blob: 61192973e7cbaad1305c2ebea324f43e2506665a [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 Hunterff59c522014-09-24 10:27:31 +030027#include <linux/mmc/slot-gpio.h>
Adrian Hunter52c506f2011-12-27 15:48:43 +020028#include <linux/mmc/sdhci-pci-data.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010029
30#include "sdhci.h"
Adam Lee522624f2013-12-18 22:23:38 +080031#include "sdhci-pci.h"
Adam Lee01acf692013-12-19 00:01:26 +080032#include "sdhci-pci-o2micro.h"
Pierre Ossman22606402008-03-23 19:33:23 +010033
34/*****************************************************************************\
35 * *
36 * Hardware specific quirk handling *
37 * *
38\*****************************************************************************/
39
40static int ricoh_probe(struct sdhci_pci_chip *chip)
41{
Chris Ballc99436f2009-09-22 16:45:22 -070042 if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
43 chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
Pierre Ossman22606402008-03-23 19:33:23 +010044 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
Maxim Levitskyccc92c22010-08-10 18:01:42 -070045 return 0;
46}
Pierre Ossman22606402008-03-23 19:33:23 +010047
Maxim Levitskyccc92c22010-08-10 18:01:42 -070048static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot)
49{
50 slot->host->caps =
51 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT)
52 & SDHCI_TIMEOUT_CLK_MASK) |
53
54 ((0x21 << SDHCI_CLOCK_BASE_SHIFT)
55 & SDHCI_CLOCK_BASE_MASK) |
56
57 SDHCI_TIMEOUT_CLK_UNIT |
58 SDHCI_CAN_VDD_330 |
Madhvapathi Sriram1a1f1f02012-10-15 04:47:30 +000059 SDHCI_CAN_DO_HISPD |
Maxim Levitskyccc92c22010-08-10 18:01:42 -070060 SDHCI_CAN_DO_SDMA;
61 return 0;
62}
63
64static int ricoh_mmc_resume(struct sdhci_pci_chip *chip)
65{
66 /* Apply a delay to allow controller to settle */
67 /* Otherwise it becomes confused if card state changed
68 during suspend */
69 msleep(500);
Pierre Ossman22606402008-03-23 19:33:23 +010070 return 0;
71}
72
73static const struct sdhci_pci_fixes sdhci_ricoh = {
74 .probe = ricoh_probe,
Vasily Khoruzhick84938292010-03-05 13:43:46 -080075 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
76 SDHCI_QUIRK_FORCE_DMA |
77 SDHCI_QUIRK_CLOCK_BEFORE_RESET,
Pierre Ossman22606402008-03-23 19:33:23 +010078};
79
Maxim Levitskyccc92c22010-08-10 18:01:42 -070080static const struct sdhci_pci_fixes sdhci_ricoh_mmc = {
81 .probe_slot = ricoh_mmc_probe_slot,
82 .resume = ricoh_mmc_resume,
83 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
84 SDHCI_QUIRK_CLOCK_BEFORE_RESET |
85 SDHCI_QUIRK_NO_CARD_NO_RESET |
86 SDHCI_QUIRK_MISSING_CAPS
87};
88
Pierre Ossman22606402008-03-23 19:33:23 +010089static const struct sdhci_pci_fixes sdhci_ene_712 = {
90 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
91 SDHCI_QUIRK_BROKEN_DMA,
92};
93
94static const struct sdhci_pci_fixes sdhci_ene_714 = {
95 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
96 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS |
97 SDHCI_QUIRK_BROKEN_DMA,
98};
99
100static const struct sdhci_pci_fixes sdhci_cafe = {
101 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
Andres Salomona0874892009-03-02 21:48:20 +0100102 SDHCI_QUIRK_NO_BUSY_IRQ |
Daniel Drake55fc05b2012-07-03 23:13:39 +0100103 SDHCI_QUIRK_BROKEN_CARD_DETECTION |
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200104 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
Pierre Ossman22606402008-03-23 19:33:23 +0100105};
106
Derek Browne43e968c2014-06-24 06:56:36 -0700107static const struct sdhci_pci_fixes sdhci_intel_qrk = {
108 .quirks = SDHCI_QUIRK_NO_HISPD_BIT,
109};
110
Major Lee68077b02011-06-29 14:23:46 +0300111static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot)
112{
113 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
114 return 0;
115}
116
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100117/*
118 * ADMA operation is disabled for Moorestown platform due to
119 * hardware bugs.
120 */
Jacob Pan35ac6f02010-11-09 13:57:29 +0000121static int mrst_hc_probe(struct sdhci_pci_chip *chip)
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100122{
123 /*
Jacob Pan35ac6f02010-11-09 13:57:29 +0000124 * slots number is fixed here for MRST as SDIO3/5 are never used and
125 * have hardware bugs.
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100126 */
127 chip->num_slots = 1;
128 return 0;
129}
130
Alexander Stein296e0b02012-03-14 08:38:58 +0100131static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
132{
133 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
134 return 0;
135}
136
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300137#ifdef CONFIG_PM_RUNTIME
138
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200139static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300140{
141 struct sdhci_pci_slot *slot = dev_id;
142 struct sdhci_host *host = slot->host;
143
144 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
145 return IRQ_HANDLED;
146}
147
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200148static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300149{
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200150 int err, irq, gpio = slot->cd_gpio;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300151
152 slot->cd_gpio = -EINVAL;
153 slot->cd_irq = -EINVAL;
154
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200155 if (!gpio_is_valid(gpio))
156 return;
157
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300158 err = gpio_request(gpio, "sd_cd");
159 if (err < 0)
160 goto out;
161
162 err = gpio_direction_input(gpio);
163 if (err < 0)
164 goto out_free;
165
166 irq = gpio_to_irq(gpio);
167 if (irq < 0)
168 goto out_free;
169
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200170 err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING |
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300171 IRQF_TRIGGER_FALLING, "sd_cd", slot);
172 if (err)
173 goto out_free;
174
175 slot->cd_gpio = gpio;
176 slot->cd_irq = irq;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300177
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200178 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300179
180out_free:
181 gpio_free(gpio);
182out:
183 dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300184}
185
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200186static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300187{
188 if (slot->cd_irq >= 0)
189 free_irq(slot->cd_irq, slot);
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200190 if (gpio_is_valid(slot->cd_gpio))
191 gpio_free(slot->cd_gpio);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300192}
193
194#else
195
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200196static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
197{
198}
199
200static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
201{
202}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300203
204#endif
205
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300206static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
207{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300208 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
Adrian Hunterda721cf2012-02-07 14:48:53 +0200209 slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC |
210 MMC_CAP2_HC_ERASE_SZ;
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300211 return 0;
212}
213
Adrian Hunter93933502011-12-27 15:48:47 +0200214static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot)
215{
Adrian Hunter012e4672012-01-30 14:27:18 +0200216 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
Adrian Hunter93933502011-12-27 15:48:47 +0200217 return 0;
218}
219
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100220static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
221 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Major Lee68077b02011-06-29 14:23:46 +0300222 .probe_slot = mrst_hc_probe_slot,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100223};
224
Jacob Pan35ac6f02010-11-09 13:57:29 +0000225static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100226 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000227 .probe = mrst_hc_probe,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100228};
229
Xiaochen Shen29229052010-10-04 15:24:52 +0100230static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
231 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300232 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200233 .own_cd_for_runtime_pm = true,
Xiaochen Shen29229052010-10-04 15:24:52 +0100234};
235
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300236static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = {
Xiaochen Shen29229052010-10-04 15:24:52 +0100237 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterf3c55a72012-02-07 14:48:55 +0200238 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300239 .allow_runtime_pm = true,
Adrian Hunter93933502011-12-27 15:48:47 +0200240 .probe_slot = mfd_sdio_probe_slot,
Xiaochen Shen29229052010-10-04 15:24:52 +0100241};
242
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300243static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = {
244 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300245 .allow_runtime_pm = true,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300246 .probe_slot = mfd_emmc_probe_slot,
247};
248
Alexander Stein296e0b02012-03-14 08:38:58 +0100249static const struct sdhci_pci_fixes sdhci_intel_pch_sdio = {
250 .quirks = SDHCI_QUIRK_BROKEN_ADMA,
251 .probe_slot = pch_hc_probe_slot,
252};
253
Adrian Hunterc9faff62013-06-13 11:50:26 +0300254static void sdhci_pci_int_hw_reset(struct sdhci_host *host)
255{
256 u8 reg;
257
258 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
259 reg |= 0x10;
260 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
261 /* For eMMC, minimum is 1us but give it 9us for good measure */
262 udelay(9);
263 reg &= ~0x10;
264 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
265 /* For eMMC, minimum is 200us but give it 300us for good measure */
266 usleep_range(300, 1000);
267}
268
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300269static int byt_emmc_probe_slot(struct sdhci_pci_slot *slot)
270{
Adrian Hunterc9faff62013-06-13 11:50:26 +0300271 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
Maurice Petallof25c3372014-07-08 19:11:01 +0800272 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR;
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300273 slot->host->mmc->caps2 |= MMC_CAP2_HC_ERASE_SZ;
Adrian Hunterc9faff62013-06-13 11:50:26 +0300274 slot->hw_reset = sdhci_pci_int_hw_reset;
Adrian Huntera06586b2014-09-24 10:27:33 +0300275 if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BSW_EMMC)
276 slot->host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300277 return 0;
278}
279
280static int byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
281{
282 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
283 return 0;
284}
285
Adrian Hunterff59c522014-09-24 10:27:31 +0300286static int byt_sd_probe_slot(struct sdhci_pci_slot *slot)
287{
288 slot->cd_con_id = NULL;
289 slot->cd_idx = 0;
290 slot->cd_override_level = true;
291 return 0;
292}
293
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300294static const struct sdhci_pci_fixes sdhci_intel_byt_emmc = {
295 .allow_runtime_pm = true,
296 .probe_slot = byt_emmc_probe_slot,
Adrian Huntere58e4a02014-09-24 10:27:30 +0300297 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
298 SDHCI_QUIRK2_STOP_WITH_TC,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300299};
300
301static const struct sdhci_pci_fixes sdhci_intel_byt_sdio = {
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800302 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON |
303 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300304 .allow_runtime_pm = true,
305 .probe_slot = byt_sdio_probe_slot,
306};
307
308static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800309 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
Adrian Huntere58e4a02014-09-24 10:27:30 +0300310 SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
311 SDHCI_QUIRK2_STOP_WITH_TC,
Adrian Hunter7396e312013-05-06 12:17:34 +0300312 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200313 .own_cd_for_runtime_pm = true,
Adrian Hunterff59c522014-09-24 10:27:31 +0300314 .probe_slot = byt_sd_probe_slot,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300315};
316
David Cohen8776a162013-10-01 13:18:15 -0700317/* Define Host controllers for Intel Merrifield platform */
318#define INTEL_MRFL_EMMC_0 0
319#define INTEL_MRFL_EMMC_1 1
320
321static int intel_mrfl_mmc_probe_slot(struct sdhci_pci_slot *slot)
322{
323 if ((PCI_FUNC(slot->chip->pdev->devfn) != INTEL_MRFL_EMMC_0) &&
324 (PCI_FUNC(slot->chip->pdev->devfn) != INTEL_MRFL_EMMC_1))
325 /* SD support is not ready yet */
326 return -ENODEV;
327
328 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
329 MMC_CAP_1_8V_DDR;
330
331 return 0;
332}
333
334static const struct sdhci_pci_fixes sdhci_intel_mrfl_mmc = {
335 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800336 .quirks2 = SDHCI_QUIRK2_BROKEN_HS200 |
337 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Gao, Yunpengf1b55a52014-08-18 15:05:52 +0800338 .allow_runtime_pm = true,
David Cohen8776a162013-10-01 13:18:15 -0700339 .probe_slot = intel_mrfl_mmc_probe_slot,
340};
341
Jennifer Li26daa1e2010-11-17 23:01:59 -0500342/* O2Micro extra registers */
343#define O2_SD_LOCK_WP 0xD3
344#define O2_SD_MULTI_VCC3V 0xEE
345#define O2_SD_CLKREQ 0xEC
346#define O2_SD_CAPS 0xE0
347#define O2_SD_ADMA1 0xE2
348#define O2_SD_ADMA2 0xE7
349#define O2_SD_INF_MOD 0xF1
350
Pierre Ossman45211e22008-03-24 13:09:09 +0100351static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
352{
353 u8 scratch;
354 int ret;
355
356 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
357 if (ret)
358 return ret;
359
360 /*
361 * Turn PMOS on [bit 0], set over current detection to 2.4 V
362 * [bit 1:2] and enable over current debouncing [bit 6].
363 */
364 if (on)
365 scratch |= 0x47;
366 else
367 scratch &= ~0x47;
368
369 ret = pci_write_config_byte(chip->pdev, 0xAE, scratch);
370 if (ret)
371 return ret;
372
373 return 0;
374}
375
376static int jmicron_probe(struct sdhci_pci_chip *chip)
377{
378 int ret;
Takashi Iwai8f230f42010-12-08 10:04:30 +0100379 u16 mmcdev = 0;
Pierre Ossman45211e22008-03-24 13:09:09 +0100380
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200381 if (chip->pdev->revision == 0) {
382 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
383 SDHCI_QUIRK_32BIT_DMA_SIZE |
Pierre Ossman2134a922008-06-28 18:28:51 +0200384 SDHCI_QUIRK_32BIT_ADMA_SIZE |
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200385 SDHCI_QUIRK_RESET_AFTER_REQUEST |
Pierre Ossman86a6a872009-02-02 21:13:49 +0100386 SDHCI_QUIRK_BROKEN_SMALL_PIO;
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200387 }
388
Pierre Ossman45211e22008-03-24 13:09:09 +0100389 /*
Pierre Ossman44894282008-04-04 19:36:59 +0200390 * JMicron chips can have two interfaces to the same hardware
391 * in order to work around limitations in Microsoft's driver.
392 * We need to make sure we only bind to one of them.
393 *
394 * This code assumes two things:
395 *
396 * 1. The PCI code adds subfunctions in order.
397 *
398 * 2. The MMC interface has a lower subfunction number
399 * than the SD interface.
400 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100401 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD)
402 mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC;
403 else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD)
404 mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD;
405
406 if (mmcdev) {
Pierre Ossman44894282008-04-04 19:36:59 +0200407 struct pci_dev *sd_dev;
408
409 sd_dev = NULL;
410 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
Takashi Iwai8f230f42010-12-08 10:04:30 +0100411 mmcdev, sd_dev)) != NULL) {
Pierre Ossman44894282008-04-04 19:36:59 +0200412 if ((PCI_SLOT(chip->pdev->devfn) ==
413 PCI_SLOT(sd_dev->devfn)) &&
414 (chip->pdev->bus == sd_dev->bus))
415 break;
416 }
417
418 if (sd_dev) {
419 pci_dev_put(sd_dev);
420 dev_info(&chip->pdev->dev, "Refusing to bind to "
421 "secondary interface.\n");
422 return -ENODEV;
423 }
424 }
425
426 /*
Pierre Ossman45211e22008-03-24 13:09:09 +0100427 * JMicron chips need a bit of a nudge to enable the power
428 * output pins.
429 */
430 ret = jmicron_pmos(chip, 1);
431 if (ret) {
432 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
433 return ret;
434 }
435
Takashi Iwai82b0e232011-04-21 20:26:38 +0200436 /* quirk for unsable RO-detection on JM388 chips */
437 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD ||
438 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
439 chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT;
440
Pierre Ossman45211e22008-03-24 13:09:09 +0100441 return 0;
442}
443
Pierre Ossman44894282008-04-04 19:36:59 +0200444static void jmicron_enable_mmc(struct sdhci_host *host, int on)
445{
446 u8 scratch;
447
448 scratch = readb(host->ioaddr + 0xC0);
449
450 if (on)
451 scratch |= 0x01;
452 else
453 scratch &= ~0x01;
454
455 writeb(scratch, host->ioaddr + 0xC0);
456}
457
458static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
459{
Pierre Ossman2134a922008-06-28 18:28:51 +0200460 if (slot->chip->pdev->revision == 0) {
461 u16 version;
462
463 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
464 version = (version & SDHCI_VENDOR_VER_MASK) >>
465 SDHCI_VENDOR_VER_SHIFT;
466
467 /*
468 * Older versions of the chip have lots of nasty glitches
469 * in the ADMA engine. It's best just to avoid it
470 * completely.
471 */
472 if (version < 0xAC)
473 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
474 }
475
Takashi Iwai8f230f42010-12-08 10:04:30 +0100476 /* JM388 MMC doesn't support 1.8V while SD supports it */
477 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
478 slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 |
479 MMC_VDD_29_30 | MMC_VDD_30_31 |
480 MMC_VDD_165_195; /* allow 1.8V */
481 slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 |
482 MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */
483 }
484
Pierre Ossman44894282008-04-04 19:36:59 +0200485 /*
486 * The secondary interface requires a bit set to get the
487 * interrupts.
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, 1);
492
Takashi Iwaid75c1082010-12-16 17:54:14 +0100493 slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST;
494
Pierre Ossman44894282008-04-04 19:36:59 +0200495 return 0;
496}
497
Pierre Ossman1e728592008-04-16 19:13:13 +0200498static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
Pierre Ossman44894282008-04-04 19:36:59 +0200499{
Pierre Ossman1e728592008-04-16 19:13:13 +0200500 if (dead)
501 return;
502
Takashi Iwai8f230f42010-12-08 10:04:30 +0100503 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
504 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200505 jmicron_enable_mmc(slot->host, 0);
506}
507
Manuel Lauss29495aa2011-11-03 11:09:45 +0100508static int jmicron_suspend(struct sdhci_pci_chip *chip)
Pierre Ossman44894282008-04-04 19:36:59 +0200509{
510 int i;
511
Takashi Iwai8f230f42010-12-08 10:04:30 +0100512 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
513 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300514 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200515 jmicron_enable_mmc(chip->slots[i]->host, 0);
516 }
517
518 return 0;
519}
520
Pierre Ossman45211e22008-03-24 13:09:09 +0100521static int jmicron_resume(struct sdhci_pci_chip *chip)
522{
Pierre Ossman44894282008-04-04 19:36:59 +0200523 int ret, i;
524
Takashi Iwai8f230f42010-12-08 10:04:30 +0100525 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
526 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300527 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200528 jmicron_enable_mmc(chip->slots[i]->host, 1);
529 }
Pierre Ossman45211e22008-03-24 13:09:09 +0100530
531 ret = jmicron_pmos(chip, 1);
532 if (ret) {
533 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
534 return ret;
535 }
536
537 return 0;
538}
539
Jennifer Li26daa1e2010-11-17 23:01:59 -0500540static const struct sdhci_pci_fixes sdhci_o2 = {
Adam Lee01acf692013-12-19 00:01:26 +0800541 .probe = sdhci_pci_o2_probe,
542 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
543 .probe_slot = sdhci_pci_o2_probe_slot,
544 .resume = sdhci_pci_o2_resume,
Jennifer Li26daa1e2010-11-17 23:01:59 -0500545};
546
Pierre Ossman22606402008-03-23 19:33:23 +0100547static const struct sdhci_pci_fixes sdhci_jmicron = {
Pierre Ossman45211e22008-03-24 13:09:09 +0100548 .probe = jmicron_probe,
549
Pierre Ossman44894282008-04-04 19:36:59 +0200550 .probe_slot = jmicron_probe_slot,
551 .remove_slot = jmicron_remove_slot,
552
553 .suspend = jmicron_suspend,
Pierre Ossman45211e22008-03-24 13:09:09 +0100554 .resume = jmicron_resume,
Pierre Ossman22606402008-03-23 19:33:23 +0100555};
556
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800557/* SysKonnect CardBus2SDIO extra registers */
558#define SYSKT_CTRL 0x200
559#define SYSKT_RDFIFO_STAT 0x204
560#define SYSKT_WRFIFO_STAT 0x208
561#define SYSKT_POWER_DATA 0x20c
562#define SYSKT_POWER_330 0xef
563#define SYSKT_POWER_300 0xf8
564#define SYSKT_POWER_184 0xcc
565#define SYSKT_POWER_CMD 0x20d
566#define SYSKT_POWER_START (1 << 7)
567#define SYSKT_POWER_STATUS 0x20e
568#define SYSKT_POWER_STATUS_OK (1 << 0)
569#define SYSKT_BOARD_REV 0x210
570#define SYSKT_CHIP_REV 0x211
571#define SYSKT_CONF_DATA 0x212
572#define SYSKT_CONF_DATA_1V8 (1 << 2)
573#define SYSKT_CONF_DATA_2V5 (1 << 1)
574#define SYSKT_CONF_DATA_3V3 (1 << 0)
575
576static int syskt_probe(struct sdhci_pci_chip *chip)
577{
578 if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
579 chip->pdev->class &= ~0x0000FF;
580 chip->pdev->class |= PCI_SDHCI_IFDMA;
581 }
582 return 0;
583}
584
585static int syskt_probe_slot(struct sdhci_pci_slot *slot)
586{
587 int tm, ps;
588
589 u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
590 u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
591 dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
592 "board rev %d.%d, chip rev %d.%d\n",
593 board_rev >> 4, board_rev & 0xf,
594 chip_rev >> 4, chip_rev & 0xf);
595 if (chip_rev >= 0x20)
596 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
597
598 writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
599 writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
600 udelay(50);
601 tm = 10; /* Wait max 1 ms */
602 do {
603 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
604 if (ps & SYSKT_POWER_STATUS_OK)
605 break;
606 udelay(100);
607 } while (--tm);
608 if (!tm) {
609 dev_err(&slot->chip->pdev->dev,
610 "power regulator never stabilized");
611 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
612 return -ENODEV;
613 }
614
615 return 0;
616}
617
618static const struct sdhci_pci_fixes sdhci_syskt = {
619 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
620 .probe = syskt_probe,
621 .probe_slot = syskt_probe_slot,
622};
623
Harald Welte557b0692009-06-18 16:53:38 +0200624static int via_probe(struct sdhci_pci_chip *chip)
625{
626 if (chip->pdev->revision == 0x10)
627 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
628
629 return 0;
630}
631
632static const struct sdhci_pci_fixes sdhci_via = {
633 .probe = via_probe,
634};
635
Micky Ching9107ebb2014-02-21 18:40:35 +0800636static int rtsx_probe_slot(struct sdhci_pci_slot *slot)
637{
638 slot->host->mmc->caps2 |= MMC_CAP2_HS200;
639 return 0;
640}
641
642static const struct sdhci_pci_fixes sdhci_rtsx = {
643 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
644 SDHCI_QUIRK2_BROKEN_DDR50,
645 .probe_slot = rtsx_probe_slot,
646};
647
Bill Pemberton9647f842012-11-19 13:25:11 -0500648static const struct pci_device_id pci_ids[] = {
Pierre Ossman22606402008-03-23 19:33:23 +0100649 {
650 .vendor = PCI_VENDOR_ID_RICOH,
651 .device = PCI_DEVICE_ID_RICOH_R5C822,
652 .subvendor = PCI_ANY_ID,
653 .subdevice = PCI_ANY_ID,
654 .driver_data = (kernel_ulong_t)&sdhci_ricoh,
655 },
656
657 {
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700658 .vendor = PCI_VENDOR_ID_RICOH,
659 .device = 0x843,
660 .subvendor = PCI_ANY_ID,
661 .subdevice = PCI_ANY_ID,
662 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
663 },
664
665 {
Pablo Castillo568133e2010-08-10 18:02:01 -0700666 .vendor = PCI_VENDOR_ID_RICOH,
667 .device = 0xe822,
668 .subvendor = PCI_ANY_ID,
669 .subdevice = PCI_ANY_ID,
670 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
671 },
672
673 {
Manoj Iyer5fd11c02011-02-11 16:25:31 -0600674 .vendor = PCI_VENDOR_ID_RICOH,
675 .device = 0xe823,
676 .subvendor = PCI_ANY_ID,
677 .subdevice = PCI_ANY_ID,
678 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
679 },
680
681 {
Pierre Ossman22606402008-03-23 19:33:23 +0100682 .vendor = PCI_VENDOR_ID_ENE,
683 .device = PCI_DEVICE_ID_ENE_CB712_SD,
684 .subvendor = PCI_ANY_ID,
685 .subdevice = PCI_ANY_ID,
686 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
687 },
688
689 {
690 .vendor = PCI_VENDOR_ID_ENE,
691 .device = PCI_DEVICE_ID_ENE_CB712_SD_2,
692 .subvendor = PCI_ANY_ID,
693 .subdevice = PCI_ANY_ID,
694 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
695 },
696
697 {
698 .vendor = PCI_VENDOR_ID_ENE,
699 .device = PCI_DEVICE_ID_ENE_CB714_SD,
700 .subvendor = PCI_ANY_ID,
701 .subdevice = PCI_ANY_ID,
702 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
703 },
704
705 {
706 .vendor = PCI_VENDOR_ID_ENE,
707 .device = PCI_DEVICE_ID_ENE_CB714_SD_2,
708 .subvendor = PCI_ANY_ID,
709 .subdevice = PCI_ANY_ID,
710 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
711 },
712
713 {
714 .vendor = PCI_VENDOR_ID_MARVELL,
David Woodhouse8c5eb882008-09-03 09:45:57 +0100715 .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD,
Pierre Ossman22606402008-03-23 19:33:23 +0100716 .subvendor = PCI_ANY_ID,
717 .subdevice = PCI_ANY_ID,
718 .driver_data = (kernel_ulong_t)&sdhci_cafe,
719 },
720
721 {
722 .vendor = PCI_VENDOR_ID_JMICRON,
723 .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD,
724 .subvendor = PCI_ANY_ID,
725 .subdevice = PCI_ANY_ID,
726 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
727 },
728
Pierre Ossman44894282008-04-04 19:36:59 +0200729 {
730 .vendor = PCI_VENDOR_ID_JMICRON,
731 .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC,
732 .subvendor = PCI_ANY_ID,
733 .subdevice = PCI_ANY_ID,
734 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
735 },
736
Harald Welte557b0692009-06-18 16:53:38 +0200737 {
Takashi Iwai8f230f42010-12-08 10:04:30 +0100738 .vendor = PCI_VENDOR_ID_JMICRON,
739 .device = PCI_DEVICE_ID_JMICRON_JMB388_SD,
740 .subvendor = PCI_ANY_ID,
741 .subdevice = PCI_ANY_ID,
742 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
743 },
744
745 {
746 .vendor = PCI_VENDOR_ID_JMICRON,
747 .device = PCI_DEVICE_ID_JMICRON_JMB388_ESD,
748 .subvendor = PCI_ANY_ID,
749 .subdevice = PCI_ANY_ID,
750 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
751 },
752
753 {
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800754 .vendor = PCI_VENDOR_ID_SYSKONNECT,
755 .device = 0x8000,
756 .subvendor = PCI_ANY_ID,
757 .subdevice = PCI_ANY_ID,
758 .driver_data = (kernel_ulong_t)&sdhci_syskt,
759 },
760
761 {
Harald Welte557b0692009-06-18 16:53:38 +0200762 .vendor = PCI_VENDOR_ID_VIA,
763 .device = 0x95d0,
764 .subvendor = PCI_ANY_ID,
765 .subdevice = PCI_ANY_ID,
766 .driver_data = (kernel_ulong_t)&sdhci_via,
767 },
768
Xiaochen Shen29229052010-10-04 15:24:52 +0100769 {
Micky Ching9107ebb2014-02-21 18:40:35 +0800770 .vendor = PCI_VENDOR_ID_REALTEK,
771 .device = 0x5250,
772 .subvendor = PCI_ANY_ID,
773 .subdevice = PCI_ANY_ID,
774 .driver_data = (kernel_ulong_t)&sdhci_rtsx,
775 },
776
777 {
Xiaochen Shen29229052010-10-04 15:24:52 +0100778 .vendor = PCI_VENDOR_ID_INTEL,
Derek Browne43e968c2014-06-24 06:56:36 -0700779 .device = PCI_DEVICE_ID_INTEL_QRK_SD,
780 .subvendor = PCI_ANY_ID,
781 .subdevice = PCI_ANY_ID,
782 .driver_data = (kernel_ulong_t)&sdhci_intel_qrk,
783 },
784
785 {
786 .vendor = PCI_VENDOR_ID_INTEL,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100787 .device = PCI_DEVICE_ID_INTEL_MRST_SD0,
788 .subvendor = PCI_ANY_ID,
789 .subdevice = PCI_ANY_ID,
790 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc0,
791 },
792
793 {
794 .vendor = PCI_VENDOR_ID_INTEL,
795 .device = PCI_DEVICE_ID_INTEL_MRST_SD1,
796 .subvendor = PCI_ANY_ID,
797 .subdevice = PCI_ANY_ID,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000798 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
799 },
800
801 {
802 .vendor = PCI_VENDOR_ID_INTEL,
803 .device = PCI_DEVICE_ID_INTEL_MRST_SD2,
804 .subvendor = PCI_ANY_ID,
805 .subdevice = PCI_ANY_ID,
806 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100807 },
808
809 {
810 .vendor = PCI_VENDOR_ID_INTEL,
Xiaochen Shen29229052010-10-04 15:24:52 +0100811 .device = PCI_DEVICE_ID_INTEL_MFD_SD,
812 .subvendor = PCI_ANY_ID,
813 .subdevice = PCI_ANY_ID,
814 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
815 },
816
817 {
818 .vendor = PCI_VENDOR_ID_INTEL,
819 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO1,
820 .subvendor = PCI_ANY_ID,
821 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300822 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100823 },
824
825 {
826 .vendor = PCI_VENDOR_ID_INTEL,
827 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO2,
828 .subvendor = PCI_ANY_ID,
829 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300830 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100831 },
832
833 {
834 .vendor = PCI_VENDOR_ID_INTEL,
835 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC0,
836 .subvendor = PCI_ANY_ID,
837 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300838 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100839 },
840
841 {
842 .vendor = PCI_VENDOR_ID_INTEL,
843 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC1,
844 .subvendor = PCI_ANY_ID,
845 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300846 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100847 },
848
Jennifer Li26daa1e2010-11-17 23:01:59 -0500849 {
Alexander Stein296e0b02012-03-14 08:38:58 +0100850 .vendor = PCI_VENDOR_ID_INTEL,
851 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO0,
852 .subvendor = PCI_ANY_ID,
853 .subdevice = PCI_ANY_ID,
854 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
855 },
856
857 {
858 .vendor = PCI_VENDOR_ID_INTEL,
859 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO1,
860 .subvendor = PCI_ANY_ID,
861 .subdevice = PCI_ANY_ID,
862 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
863 },
864
865 {
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300866 .vendor = PCI_VENDOR_ID_INTEL,
867 .device = PCI_DEVICE_ID_INTEL_BYT_EMMC,
868 .subvendor = PCI_ANY_ID,
869 .subdevice = PCI_ANY_ID,
870 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
871 },
872
873 {
874 .vendor = PCI_VENDOR_ID_INTEL,
875 .device = PCI_DEVICE_ID_INTEL_BYT_SDIO,
876 .subvendor = PCI_ANY_ID,
877 .subdevice = PCI_ANY_ID,
878 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
879 },
880
881 {
882 .vendor = PCI_VENDOR_ID_INTEL,
883 .device = PCI_DEVICE_ID_INTEL_BYT_SD,
884 .subvendor = PCI_ANY_ID,
885 .subdevice = PCI_ANY_ID,
886 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
887 },
888
889 {
Adrian Hunter30d025c2013-06-20 12:57:59 +0300890 .vendor = PCI_VENDOR_ID_INTEL,
891 .device = PCI_DEVICE_ID_INTEL_BYT_EMMC2,
892 .subvendor = PCI_ANY_ID,
893 .subdevice = PCI_ANY_ID,
894 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
895 },
896
Alan Cox066173b2014-08-20 13:27:44 +0300897 {
898 .vendor = PCI_VENDOR_ID_INTEL,
899 .device = PCI_DEVICE_ID_INTEL_BSW_EMMC,
900 .subvendor = PCI_ANY_ID,
901 .subdevice = PCI_ANY_ID,
902 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
903 },
904
905 {
906 .vendor = PCI_VENDOR_ID_INTEL,
907 .device = PCI_DEVICE_ID_INTEL_BSW_SDIO,
908 .subvendor = PCI_ANY_ID,
909 .subdevice = PCI_ANY_ID,
910 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
911 },
912
913 {
914 .vendor = PCI_VENDOR_ID_INTEL,
915 .device = PCI_DEVICE_ID_INTEL_BSW_SD,
916 .subvendor = PCI_ANY_ID,
917 .subdevice = PCI_ANY_ID,
918 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
919 },
Eric Ernstd0520682013-10-21 09:54:41 -0700920
921 {
922 .vendor = PCI_VENDOR_ID_INTEL,
923 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO0,
924 .subvendor = PCI_ANY_ID,
925 .subdevice = PCI_ANY_ID,
926 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
927 },
928
929 {
930 .vendor = PCI_VENDOR_ID_INTEL,
931 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO1,
932 .subvendor = PCI_ANY_ID,
933 .subdevice = PCI_ANY_ID,
934 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
935 },
936
937 {
938 .vendor = PCI_VENDOR_ID_INTEL,
939 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO2,
940 .subvendor = PCI_ANY_ID,
941 .subdevice = PCI_ANY_ID,
942 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
943 },
944
945 {
946 .vendor = PCI_VENDOR_ID_INTEL,
947 .device = PCI_DEVICE_ID_INTEL_CLV_EMMC0,
948 .subvendor = PCI_ANY_ID,
949 .subdevice = PCI_ANY_ID,
950 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
951 },
952
953 {
954 .vendor = PCI_VENDOR_ID_INTEL,
955 .device = PCI_DEVICE_ID_INTEL_CLV_EMMC1,
956 .subvendor = PCI_ANY_ID,
957 .subdevice = PCI_ANY_ID,
958 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
959 },
960
Adrian Hunter30d025c2013-06-20 12:57:59 +0300961 {
David Cohen8776a162013-10-01 13:18:15 -0700962 .vendor = PCI_VENDOR_ID_INTEL,
963 .device = PCI_DEVICE_ID_INTEL_MRFL_MMC,
964 .subvendor = PCI_ANY_ID,
965 .subdevice = PCI_ANY_ID,
966 .driver_data = (kernel_ulong_t)&sdhci_intel_mrfl_mmc,
967 },
968 {
Jennifer Li26daa1e2010-11-17 23:01:59 -0500969 .vendor = PCI_VENDOR_ID_O2,
970 .device = PCI_DEVICE_ID_O2_8120,
971 .subvendor = PCI_ANY_ID,
972 .subdevice = PCI_ANY_ID,
973 .driver_data = (kernel_ulong_t)&sdhci_o2,
974 },
975
976 {
977 .vendor = PCI_VENDOR_ID_O2,
978 .device = PCI_DEVICE_ID_O2_8220,
979 .subvendor = PCI_ANY_ID,
980 .subdevice = PCI_ANY_ID,
981 .driver_data = (kernel_ulong_t)&sdhci_o2,
982 },
983
984 {
985 .vendor = PCI_VENDOR_ID_O2,
986 .device = PCI_DEVICE_ID_O2_8221,
987 .subvendor = PCI_ANY_ID,
988 .subdevice = PCI_ANY_ID,
989 .driver_data = (kernel_ulong_t)&sdhci_o2,
990 },
991
992 {
993 .vendor = PCI_VENDOR_ID_O2,
994 .device = PCI_DEVICE_ID_O2_8320,
995 .subvendor = PCI_ANY_ID,
996 .subdevice = PCI_ANY_ID,
997 .driver_data = (kernel_ulong_t)&sdhci_o2,
998 },
999
1000 {
1001 .vendor = PCI_VENDOR_ID_O2,
1002 .device = PCI_DEVICE_ID_O2_8321,
1003 .subvendor = PCI_ANY_ID,
1004 .subdevice = PCI_ANY_ID,
1005 .driver_data = (kernel_ulong_t)&sdhci_o2,
1006 },
1007
Adam Lee01acf692013-12-19 00:01:26 +08001008 {
1009 .vendor = PCI_VENDOR_ID_O2,
1010 .device = PCI_DEVICE_ID_O2_FUJIN2,
1011 .subvendor = PCI_ANY_ID,
1012 .subdevice = PCI_ANY_ID,
1013 .driver_data = (kernel_ulong_t)&sdhci_o2,
1014 },
1015
1016 {
1017 .vendor = PCI_VENDOR_ID_O2,
1018 .device = PCI_DEVICE_ID_O2_SDS0,
1019 .subvendor = PCI_ANY_ID,
1020 .subdevice = PCI_ANY_ID,
1021 .driver_data = (kernel_ulong_t)&sdhci_o2,
1022 },
1023
1024 {
1025 .vendor = PCI_VENDOR_ID_O2,
1026 .device = PCI_DEVICE_ID_O2_SDS1,
1027 .subvendor = PCI_ANY_ID,
1028 .subdevice = PCI_ANY_ID,
1029 .driver_data = (kernel_ulong_t)&sdhci_o2,
1030 },
1031
1032 {
1033 .vendor = PCI_VENDOR_ID_O2,
1034 .device = PCI_DEVICE_ID_O2_SEABIRD0,
1035 .subvendor = PCI_ANY_ID,
1036 .subdevice = PCI_ANY_ID,
1037 .driver_data = (kernel_ulong_t)&sdhci_o2,
1038 },
1039
1040 {
1041 .vendor = PCI_VENDOR_ID_O2,
1042 .device = PCI_DEVICE_ID_O2_SEABIRD1,
1043 .subvendor = PCI_ANY_ID,
1044 .subdevice = PCI_ANY_ID,
1045 .driver_data = (kernel_ulong_t)&sdhci_o2,
1046 },
1047
Pierre Ossman22606402008-03-23 19:33:23 +01001048 { /* Generic SD host controller */
1049 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00)
1050 },
1051
1052 { /* end: all zeroes */ },
1053};
1054
1055MODULE_DEVICE_TABLE(pci, pci_ids);
1056
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001057/*****************************************************************************\
1058 * *
1059 * SDHCI core callbacks *
1060 * *
1061\*****************************************************************************/
1062
1063static int sdhci_pci_enable_dma(struct sdhci_host *host)
1064{
1065 struct sdhci_pci_slot *slot;
1066 struct pci_dev *pdev;
1067 int ret;
1068
1069 slot = sdhci_priv(host);
1070 pdev = slot->chip->pdev;
1071
1072 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
1073 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07001074 (host->flags & SDHCI_USE_SDMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001075 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
1076 "doesn't fully claim to support it.\n");
1077 }
1078
Yang Hongyang284901a2009-04-06 19:01:15 -07001079 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001080 if (ret)
1081 return ret;
1082
1083 pci_set_master(pdev);
1084
1085 return 0;
1086}
1087
Russell King2317f562014-04-25 12:57:07 +01001088static void sdhci_pci_set_bus_width(struct sdhci_host *host, int width)
Major Lee68077b02011-06-29 14:23:46 +03001089{
1090 u8 ctrl;
1091
1092 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1093
1094 switch (width) {
1095 case MMC_BUS_WIDTH_8:
1096 ctrl |= SDHCI_CTRL_8BITBUS;
1097 ctrl &= ~SDHCI_CTRL_4BITBUS;
1098 break;
1099 case MMC_BUS_WIDTH_4:
1100 ctrl |= SDHCI_CTRL_4BITBUS;
1101 ctrl &= ~SDHCI_CTRL_8BITBUS;
1102 break;
1103 default:
1104 ctrl &= ~(SDHCI_CTRL_8BITBUS | SDHCI_CTRL_4BITBUS);
1105 break;
1106 }
1107
1108 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Major Lee68077b02011-06-29 14:23:46 +03001109}
1110
Adrian Hunterc9faff62013-06-13 11:50:26 +03001111static void sdhci_pci_gpio_hw_reset(struct sdhci_host *host)
Adrian Hunter0f201652011-08-29 16:42:13 +03001112{
1113 struct sdhci_pci_slot *slot = sdhci_priv(host);
1114 int rst_n_gpio = slot->rst_n_gpio;
1115
1116 if (!gpio_is_valid(rst_n_gpio))
1117 return;
1118 gpio_set_value_cansleep(rst_n_gpio, 0);
1119 /* For eMMC, minimum is 1us but give it 10us for good measure */
1120 udelay(10);
1121 gpio_set_value_cansleep(rst_n_gpio, 1);
1122 /* For eMMC, minimum is 200us but give it 300us for good measure */
1123 usleep_range(300, 1000);
1124}
1125
Adrian Hunterc9faff62013-06-13 11:50:26 +03001126static void sdhci_pci_hw_reset(struct sdhci_host *host)
1127{
1128 struct sdhci_pci_slot *slot = sdhci_priv(host);
1129
1130 if (slot->hw_reset)
1131 slot->hw_reset(host);
1132}
1133
Lars-Peter Clausenc9155682013-03-13 19:26:05 +01001134static const struct sdhci_ops sdhci_pci_ops = {
Russell King17710592014-04-25 12:58:55 +01001135 .set_clock = sdhci_set_clock,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001136 .enable_dma = sdhci_pci_enable_dma,
Russell King2317f562014-04-25 12:57:07 +01001137 .set_bus_width = sdhci_pci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +01001138 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +01001139 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunter0f201652011-08-29 16:42:13 +03001140 .hw_reset = sdhci_pci_hw_reset,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001141};
1142
1143/*****************************************************************************\
1144 * *
1145 * Suspend/resume *
1146 * *
1147\*****************************************************************************/
1148
1149#ifdef CONFIG_PM
1150
Manuel Lauss29495aa2011-11-03 11:09:45 +01001151static int sdhci_pci_suspend(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001152{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001153 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001154 struct sdhci_pci_chip *chip;
1155 struct sdhci_pci_slot *slot;
Daniel Drake5f619702010-11-04 22:20:39 +00001156 mmc_pm_flag_t slot_pm_flags;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001157 mmc_pm_flag_t pm_flags = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001158 int i, ret;
1159
1160 chip = pci_get_drvdata(pdev);
1161 if (!chip)
1162 return 0;
1163
Ameya Palandeb177bc92011-04-05 21:13:13 +03001164 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001165 slot = chip->slots[i];
1166 if (!slot)
1167 continue;
1168
Manuel Lauss29495aa2011-11-03 11:09:45 +01001169 ret = sdhci_suspend_host(slot->host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001170
Axel Linb678b912011-12-03 15:28:05 +08001171 if (ret)
1172 goto err_pci_suspend;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001173
Daniel Drake5f619702010-11-04 22:20:39 +00001174 slot_pm_flags = slot->host->mmc->pm_flags;
1175 if (slot_pm_flags & MMC_PM_WAKE_SDIO_IRQ)
1176 sdhci_enable_irq_wakeups(slot->host);
1177
1178 pm_flags |= slot_pm_flags;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001179 }
1180
Pierre Ossman44894282008-04-04 19:36:59 +02001181 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001182 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001183 if (ret)
1184 goto err_pci_suspend;
Pierre Ossman44894282008-04-04 19:36:59 +02001185 }
1186
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001187 if (pm_flags & MMC_PM_KEEP_POWER) {
Chuanxiao.Dong6b91f2d2014-07-15 17:28:05 +08001188 if (pm_flags & MMC_PM_WAKE_SDIO_IRQ)
1189 device_init_wakeup(dev, true);
1190 else
1191 device_init_wakeup(dev, false);
1192 } else
1193 device_init_wakeup(dev, false);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001194
1195 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001196
1197err_pci_suspend:
1198 while (--i >= 0)
1199 sdhci_resume_host(chip->slots[i]->host);
1200 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001201}
1202
Manuel Lauss29495aa2011-11-03 11:09:45 +01001203static int sdhci_pci_resume(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001204{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001205 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001206 struct sdhci_pci_chip *chip;
1207 struct sdhci_pci_slot *slot;
1208 int i, ret;
1209
1210 chip = pci_get_drvdata(pdev);
1211 if (!chip)
1212 return 0;
1213
Pierre Ossman45211e22008-03-24 13:09:09 +01001214 if (chip->fixes && chip->fixes->resume) {
1215 ret = chip->fixes->resume(chip);
1216 if (ret)
1217 return ret;
1218 }
1219
Ameya Palandeb177bc92011-04-05 21:13:13 +03001220 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001221 slot = chip->slots[i];
1222 if (!slot)
1223 continue;
1224
1225 ret = sdhci_resume_host(slot->host);
1226 if (ret)
1227 return ret;
1228 }
1229
1230 return 0;
1231}
1232
1233#else /* CONFIG_PM */
1234
1235#define sdhci_pci_suspend NULL
1236#define sdhci_pci_resume NULL
1237
1238#endif /* CONFIG_PM */
1239
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001240#ifdef CONFIG_PM_RUNTIME
1241
1242static int sdhci_pci_runtime_suspend(struct device *dev)
1243{
1244 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1245 struct sdhci_pci_chip *chip;
1246 struct sdhci_pci_slot *slot;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001247 int i, ret;
1248
1249 chip = pci_get_drvdata(pdev);
1250 if (!chip)
1251 return 0;
1252
1253 for (i = 0; i < chip->num_slots; i++) {
1254 slot = chip->slots[i];
1255 if (!slot)
1256 continue;
1257
1258 ret = sdhci_runtime_suspend_host(slot->host);
1259
Axel Linb678b912011-12-03 15:28:05 +08001260 if (ret)
1261 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001262 }
1263
1264 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001265 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001266 if (ret)
1267 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001268 }
1269
1270 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001271
1272err_pci_runtime_suspend:
1273 while (--i >= 0)
1274 sdhci_runtime_resume_host(chip->slots[i]->host);
1275 return ret;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001276}
1277
1278static int sdhci_pci_runtime_resume(struct device *dev)
1279{
1280 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1281 struct sdhci_pci_chip *chip;
1282 struct sdhci_pci_slot *slot;
1283 int i, ret;
1284
1285 chip = pci_get_drvdata(pdev);
1286 if (!chip)
1287 return 0;
1288
1289 if (chip->fixes && chip->fixes->resume) {
1290 ret = chip->fixes->resume(chip);
1291 if (ret)
1292 return ret;
1293 }
1294
1295 for (i = 0; i < chip->num_slots; i++) {
1296 slot = chip->slots[i];
1297 if (!slot)
1298 continue;
1299
1300 ret = sdhci_runtime_resume_host(slot->host);
1301 if (ret)
1302 return ret;
1303 }
1304
1305 return 0;
1306}
1307
1308static int sdhci_pci_runtime_idle(struct device *dev)
1309{
1310 return 0;
1311}
1312
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001313#endif
1314
1315static const struct dev_pm_ops sdhci_pci_pm_ops = {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001316 .suspend = sdhci_pci_suspend,
1317 .resume = sdhci_pci_resume,
Peter Griffinf3a92b12014-08-12 17:14:28 +01001318 SET_RUNTIME_PM_OPS(sdhci_pci_runtime_suspend,
1319 sdhci_pci_runtime_resume, sdhci_pci_runtime_idle)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001320};
1321
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001322/*****************************************************************************\
1323 * *
1324 * Device probing/removal *
1325 * *
1326\*****************************************************************************/
1327
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001328static struct sdhci_pci_slot *sdhci_pci_probe_slot(
Adrian Hunter52c506f2011-12-27 15:48:43 +02001329 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar,
1330 int slotno)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001331{
1332 struct sdhci_pci_slot *slot;
1333 struct sdhci_host *host;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001334 int ret, bar = first_bar + slotno;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001335
1336 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
1337 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
1338 return ERR_PTR(-ENODEV);
1339 }
1340
Adrian Hunter90b3e6c2012-10-18 09:54:31 +03001341 if (pci_resource_len(pdev, bar) < 0x100) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001342 dev_err(&pdev->dev, "Invalid iomem size. You may "
1343 "experience problems.\n");
1344 }
1345
1346 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1347 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
1348 return ERR_PTR(-ENODEV);
1349 }
1350
1351 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
1352 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
1353 return ERR_PTR(-ENODEV);
1354 }
1355
1356 host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot));
1357 if (IS_ERR(host)) {
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001358 dev_err(&pdev->dev, "cannot allocate host\n");
Julia Lawalldc0fd7b2010-05-26 14:42:11 -07001359 return ERR_CAST(host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001360 }
1361
1362 slot = sdhci_priv(host);
1363
1364 slot->chip = chip;
1365 slot->host = host;
1366 slot->pci_bar = bar;
Adrian Hunter0f201652011-08-29 16:42:13 +03001367 slot->rst_n_gpio = -EINVAL;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001368 slot->cd_gpio = -EINVAL;
Adrian Hunterff59c522014-09-24 10:27:31 +03001369 slot->cd_idx = -1;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001370
Adrian Hunter52c506f2011-12-27 15:48:43 +02001371 /* Retrieve platform data if there is any */
1372 if (*sdhci_pci_get_data)
1373 slot->data = sdhci_pci_get_data(pdev, slotno);
1374
1375 if (slot->data) {
1376 if (slot->data->setup) {
1377 ret = slot->data->setup(slot->data);
1378 if (ret) {
1379 dev_err(&pdev->dev, "platform setup failed\n");
1380 goto free;
1381 }
1382 }
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001383 slot->rst_n_gpio = slot->data->rst_n_gpio;
1384 slot->cd_gpio = slot->data->cd_gpio;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001385 }
1386
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001387 host->hw_name = "PCI";
1388 host->ops = &sdhci_pci_ops;
1389 host->quirks = chip->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001390 host->quirks2 = chip->quirks2;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001391
1392 host->irq = pdev->irq;
1393
1394 ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc));
1395 if (ret) {
1396 dev_err(&pdev->dev, "cannot request region\n");
Adrian Hunter52c506f2011-12-27 15:48:43 +02001397 goto cleanup;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001398 }
1399
Arjan van de Ven092f82e2008-09-28 16:15:56 -07001400 host->ioaddr = pci_ioremap_bar(pdev, bar);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001401 if (!host->ioaddr) {
1402 dev_err(&pdev->dev, "failed to remap registers\n");
Chris Ball9fdcdbb2011-03-29 00:46:12 -04001403 ret = -ENOMEM;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001404 goto release;
1405 }
1406
Pierre Ossman44894282008-04-04 19:36:59 +02001407 if (chip->fixes && chip->fixes->probe_slot) {
1408 ret = chip->fixes->probe_slot(slot);
1409 if (ret)
1410 goto unmap;
1411 }
1412
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001413 if (gpio_is_valid(slot->rst_n_gpio)) {
1414 if (!gpio_request(slot->rst_n_gpio, "eMMC_reset")) {
1415 gpio_direction_output(slot->rst_n_gpio, 1);
1416 slot->host->mmc->caps |= MMC_CAP_HW_RESET;
Adrian Hunterc9faff62013-06-13 11:50:26 +03001417 slot->hw_reset = sdhci_pci_gpio_hw_reset;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001418 } else {
1419 dev_warn(&pdev->dev, "failed to request rst_n_gpio\n");
1420 slot->rst_n_gpio = -EINVAL;
1421 }
1422 }
1423
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001424 host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ;
Aaron Lueed222a2013-03-05 11:24:52 +08001425 host->mmc->slotno = slotno;
Adrian Huntera08b17b2013-04-15 11:27:25 -04001426 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001427
Adrian Hunterff59c522014-09-24 10:27:31 +03001428 if (slot->cd_idx >= 0 &&
1429 mmc_gpiod_request_cd(host->mmc, slot->cd_con_id, slot->cd_idx,
1430 slot->cd_override_level, 0, NULL)) {
1431 dev_warn(&pdev->dev, "failed to setup card detect gpio\n");
1432 slot->cd_idx = -1;
1433 }
1434
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001435 ret = sdhci_add_host(host);
1436 if (ret)
Pierre Ossman44894282008-04-04 19:36:59 +02001437 goto remove;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001438
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001439 sdhci_pci_add_own_cd(slot);
1440
Adrian Hunter77a01222014-01-13 09:49:16 +02001441 /*
1442 * Check if the chip needs a separate GPIO for card detect to wake up
1443 * from runtime suspend. If it is not there, don't allow runtime PM.
1444 * Note sdhci_pci_add_own_cd() sets slot->cd_gpio to -EINVAL on failure.
1445 */
Adrian Hunter945be382014-01-21 09:52:39 +02001446 if (chip->fixes && chip->fixes->own_cd_for_runtime_pm &&
Adrian Hunterff59c522014-09-24 10:27:31 +03001447 !gpio_is_valid(slot->cd_gpio) && slot->cd_idx < 0)
Adrian Hunter77a01222014-01-13 09:49:16 +02001448 chip->allow_runtime_pm = false;
1449
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001450 return slot;
1451
Pierre Ossman44894282008-04-04 19:36:59 +02001452remove:
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001453 if (gpio_is_valid(slot->rst_n_gpio))
1454 gpio_free(slot->rst_n_gpio);
1455
Pierre Ossman44894282008-04-04 19:36:59 +02001456 if (chip->fixes && chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001457 chip->fixes->remove_slot(slot, 0);
Pierre Ossman44894282008-04-04 19:36:59 +02001458
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001459unmap:
1460 iounmap(host->ioaddr);
1461
1462release:
1463 pci_release_region(pdev, bar);
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001464
Adrian Hunter52c506f2011-12-27 15:48:43 +02001465cleanup:
1466 if (slot->data && slot->data->cleanup)
1467 slot->data->cleanup(slot->data);
1468
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001469free:
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001470 sdhci_free_host(host);
1471
1472 return ERR_PTR(ret);
1473}
1474
1475static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
1476{
Pierre Ossman1e728592008-04-16 19:13:13 +02001477 int dead;
1478 u32 scratch;
1479
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001480 sdhci_pci_remove_own_cd(slot);
1481
Pierre Ossman1e728592008-04-16 19:13:13 +02001482 dead = 0;
1483 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
1484 if (scratch == (u32)-1)
1485 dead = 1;
1486
1487 sdhci_remove_host(slot->host, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001488
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001489 if (gpio_is_valid(slot->rst_n_gpio))
1490 gpio_free(slot->rst_n_gpio);
1491
Pierre Ossman44894282008-04-04 19:36:59 +02001492 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001493 slot->chip->fixes->remove_slot(slot, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001494
Adrian Hunter52c506f2011-12-27 15:48:43 +02001495 if (slot->data && slot->data->cleanup)
1496 slot->data->cleanup(slot->data);
1497
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001498 pci_release_region(slot->chip->pdev, slot->pci_bar);
Pierre Ossman44894282008-04-04 19:36:59 +02001499
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001500 sdhci_free_host(slot->host);
1501}
1502
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001503static void sdhci_pci_runtime_pm_allow(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001504{
1505 pm_runtime_put_noidle(dev);
1506 pm_runtime_allow(dev);
1507 pm_runtime_set_autosuspend_delay(dev, 50);
1508 pm_runtime_use_autosuspend(dev);
1509 pm_suspend_ignore_children(dev, 1);
1510}
1511
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001512static void sdhci_pci_runtime_pm_forbid(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001513{
1514 pm_runtime_forbid(dev);
1515 pm_runtime_get_noresume(dev);
1516}
1517
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001518static int sdhci_pci_probe(struct pci_dev *pdev,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001519 const struct pci_device_id *ent)
1520{
1521 struct sdhci_pci_chip *chip;
1522 struct sdhci_pci_slot *slot;
1523
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001524 u8 slots, first_bar;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001525 int ret, i;
1526
1527 BUG_ON(pdev == NULL);
1528 BUG_ON(ent == NULL);
1529
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001530 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001531 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001532
1533 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
1534 if (ret)
1535 return ret;
1536
1537 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
1538 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
1539 if (slots == 0)
1540 return -ENODEV;
1541
1542 BUG_ON(slots > MAX_SLOTS);
1543
1544 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
1545 if (ret)
1546 return ret;
1547
1548 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
1549
1550 if (first_bar > 5) {
1551 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
1552 return -ENODEV;
1553 }
1554
1555 ret = pci_enable_device(pdev);
1556 if (ret)
1557 return ret;
1558
1559 chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
1560 if (!chip) {
1561 ret = -ENOMEM;
1562 goto err;
1563 }
1564
1565 chip->pdev = pdev;
Ameya Palandeb177bc92011-04-05 21:13:13 +03001566 chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001567 if (chip->fixes) {
Pierre Ossman22606402008-03-23 19:33:23 +01001568 chip->quirks = chip->fixes->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001569 chip->quirks2 = chip->fixes->quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001570 chip->allow_runtime_pm = chip->fixes->allow_runtime_pm;
1571 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001572 chip->num_slots = slots;
1573
1574 pci_set_drvdata(pdev, chip);
1575
Pierre Ossman22606402008-03-23 19:33:23 +01001576 if (chip->fixes && chip->fixes->probe) {
1577 ret = chip->fixes->probe(chip);
1578 if (ret)
1579 goto free;
1580 }
1581
Alan Cox225d85f2010-10-04 15:24:21 +01001582 slots = chip->num_slots; /* Quirk may have changed this */
1583
Ameya Palandeb177bc92011-04-05 21:13:13 +03001584 for (i = 0; i < slots; i++) {
Adrian Hunter52c506f2011-12-27 15:48:43 +02001585 slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001586 if (IS_ERR(slot)) {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001587 for (i--; i >= 0; i--)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001588 sdhci_pci_remove_slot(chip->slots[i]);
1589 ret = PTR_ERR(slot);
1590 goto free;
1591 }
1592
1593 chip->slots[i] = slot;
1594 }
1595
Adrian Hunterc43fd772011-10-17 10:52:44 +03001596 if (chip->allow_runtime_pm)
1597 sdhci_pci_runtime_pm_allow(&pdev->dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001598
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001599 return 0;
1600
1601free:
1602 pci_set_drvdata(pdev, NULL);
1603 kfree(chip);
1604
1605err:
1606 pci_disable_device(pdev);
1607 return ret;
1608}
1609
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001610static void sdhci_pci_remove(struct pci_dev *pdev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001611{
1612 int i;
1613 struct sdhci_pci_chip *chip;
1614
1615 chip = pci_get_drvdata(pdev);
1616
1617 if (chip) {
Adrian Hunterc43fd772011-10-17 10:52:44 +03001618 if (chip->allow_runtime_pm)
1619 sdhci_pci_runtime_pm_forbid(&pdev->dev);
1620
Ameya Palandeb177bc92011-04-05 21:13:13 +03001621 for (i = 0; i < chip->num_slots; i++)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001622 sdhci_pci_remove_slot(chip->slots[i]);
1623
1624 pci_set_drvdata(pdev, NULL);
1625 kfree(chip);
1626 }
1627
1628 pci_disable_device(pdev);
1629}
1630
1631static struct pci_driver sdhci_driver = {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001632 .name = "sdhci-pci",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001633 .id_table = pci_ids,
Ameya Palandeb177bc92011-04-05 21:13:13 +03001634 .probe = sdhci_pci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001635 .remove = sdhci_pci_remove,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001636 .driver = {
1637 .pm = &sdhci_pci_pm_ops
1638 },
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001639};
1640
Sachin Kamatacc69642012-08-27 11:57:02 +05301641module_pci_driver(sdhci_driver);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001642
Pierre Ossman32710e82009-04-08 20:14:54 +02001643MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001644MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1645MODULE_LICENSE("GPL");