blob: a4dbf7421edc7f9342a18fa7f19cb033d05a0fa8 [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>
Adrian Huntere1bfad62015-02-06 14:13:00 +020023#include <linux/mmc/mmc.h>
Ameya Palandeb177bc92011-04-05 21:13:13 +030024#include <linux/scatterlist.h>
25#include <linux/io.h>
Adrian Hunter0f201652011-08-29 16:42:13 +030026#include <linux/gpio.h>
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030027#include <linux/pm_runtime.h>
Adrian Hunterff59c522014-09-24 10:27:31 +030028#include <linux/mmc/slot-gpio.h>
Adrian Hunter52c506f2011-12-27 15:48:43 +020029#include <linux/mmc/sdhci-pci-data.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010030
31#include "sdhci.h"
Adam Lee522624f2013-12-18 22:23:38 +080032#include "sdhci-pci.h"
Adam Lee01acf692013-12-19 00:01:26 +080033#include "sdhci-pci-o2micro.h"
Pierre Ossman22606402008-03-23 19:33:23 +010034
35/*****************************************************************************\
36 * *
37 * Hardware specific quirk handling *
38 * *
39\*****************************************************************************/
40
41static int ricoh_probe(struct sdhci_pci_chip *chip)
42{
Chris Ballc99436f2009-09-22 16:45:22 -070043 if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
44 chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
Pierre Ossman22606402008-03-23 19:33:23 +010045 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
Maxim Levitskyccc92c22010-08-10 18:01:42 -070046 return 0;
47}
Pierre Ossman22606402008-03-23 19:33:23 +010048
Maxim Levitskyccc92c22010-08-10 18:01:42 -070049static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot)
50{
51 slot->host->caps =
52 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT)
53 & SDHCI_TIMEOUT_CLK_MASK) |
54
55 ((0x21 << SDHCI_CLOCK_BASE_SHIFT)
56 & SDHCI_CLOCK_BASE_MASK) |
57
58 SDHCI_TIMEOUT_CLK_UNIT |
59 SDHCI_CAN_VDD_330 |
Madhvapathi Sriram1a1f1f02012-10-15 04:47:30 +000060 SDHCI_CAN_DO_HISPD |
Maxim Levitskyccc92c22010-08-10 18:01:42 -070061 SDHCI_CAN_DO_SDMA;
62 return 0;
63}
64
65static int ricoh_mmc_resume(struct sdhci_pci_chip *chip)
66{
67 /* Apply a delay to allow controller to settle */
68 /* Otherwise it becomes confused if card state changed
69 during suspend */
70 msleep(500);
Pierre Ossman22606402008-03-23 19:33:23 +010071 return 0;
72}
73
74static const struct sdhci_pci_fixes sdhci_ricoh = {
75 .probe = ricoh_probe,
Vasily Khoruzhick84938292010-03-05 13:43:46 -080076 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
77 SDHCI_QUIRK_FORCE_DMA |
78 SDHCI_QUIRK_CLOCK_BEFORE_RESET,
Pierre Ossman22606402008-03-23 19:33:23 +010079};
80
Maxim Levitskyccc92c22010-08-10 18:01:42 -070081static const struct sdhci_pci_fixes sdhci_ricoh_mmc = {
82 .probe_slot = ricoh_mmc_probe_slot,
83 .resume = ricoh_mmc_resume,
84 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
85 SDHCI_QUIRK_CLOCK_BEFORE_RESET |
86 SDHCI_QUIRK_NO_CARD_NO_RESET |
87 SDHCI_QUIRK_MISSING_CAPS
88};
89
Pierre Ossman22606402008-03-23 19:33:23 +010090static const struct sdhci_pci_fixes sdhci_ene_712 = {
91 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
92 SDHCI_QUIRK_BROKEN_DMA,
93};
94
95static const struct sdhci_pci_fixes sdhci_ene_714 = {
96 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
97 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS |
98 SDHCI_QUIRK_BROKEN_DMA,
99};
100
101static const struct sdhci_pci_fixes sdhci_cafe = {
102 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
Andres Salomona0874892009-03-02 21:48:20 +0100103 SDHCI_QUIRK_NO_BUSY_IRQ |
Daniel Drake55fc05b2012-07-03 23:13:39 +0100104 SDHCI_QUIRK_BROKEN_CARD_DETECTION |
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200105 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
Pierre Ossman22606402008-03-23 19:33:23 +0100106};
107
Derek Browne43e968c2014-06-24 06:56:36 -0700108static const struct sdhci_pci_fixes sdhci_intel_qrk = {
109 .quirks = SDHCI_QUIRK_NO_HISPD_BIT,
110};
111
Major Lee68077b02011-06-29 14:23:46 +0300112static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot)
113{
114 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
115 return 0;
116}
117
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100118/*
119 * ADMA operation is disabled for Moorestown platform due to
120 * hardware bugs.
121 */
Jacob Pan35ac6f02010-11-09 13:57:29 +0000122static int mrst_hc_probe(struct sdhci_pci_chip *chip)
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100123{
124 /*
Jacob Pan35ac6f02010-11-09 13:57:29 +0000125 * slots number is fixed here for MRST as SDIO3/5 are never used and
126 * have hardware bugs.
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100127 */
128 chip->num_slots = 1;
129 return 0;
130}
131
Alexander Stein296e0b02012-03-14 08:38:58 +0100132static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
133{
134 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
135 return 0;
136}
137
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +0100138#ifdef CONFIG_PM
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300139
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200140static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300141{
142 struct sdhci_pci_slot *slot = dev_id;
143 struct sdhci_host *host = slot->host;
144
145 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
146 return IRQ_HANDLED;
147}
148
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200149static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300150{
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200151 int err, irq, gpio = slot->cd_gpio;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300152
153 slot->cd_gpio = -EINVAL;
154 slot->cd_irq = -EINVAL;
155
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200156 if (!gpio_is_valid(gpio))
157 return;
158
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300159 err = gpio_request(gpio, "sd_cd");
160 if (err < 0)
161 goto out;
162
163 err = gpio_direction_input(gpio);
164 if (err < 0)
165 goto out_free;
166
167 irq = gpio_to_irq(gpio);
168 if (irq < 0)
169 goto out_free;
170
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200171 err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING |
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300172 IRQF_TRIGGER_FALLING, "sd_cd", slot);
173 if (err)
174 goto out_free;
175
176 slot->cd_gpio = gpio;
177 slot->cd_irq = irq;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300178
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200179 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300180
181out_free:
182 gpio_free(gpio);
183out:
184 dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300185}
186
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200187static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300188{
189 if (slot->cd_irq >= 0)
190 free_irq(slot->cd_irq, slot);
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200191 if (gpio_is_valid(slot->cd_gpio))
192 gpio_free(slot->cd_gpio);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300193}
194
195#else
196
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200197static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
198{
199}
200
201static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
202{
203}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300204
205#endif
206
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300207static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
208{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300209 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
Adrian Hunterda721cf2012-02-07 14:48:53 +0200210 slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC |
211 MMC_CAP2_HC_ERASE_SZ;
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300212 return 0;
213}
214
Adrian Hunter93933502011-12-27 15:48:47 +0200215static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot)
216{
Adrian Hunter012e4672012-01-30 14:27:18 +0200217 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
Adrian Hunter93933502011-12-27 15:48:47 +0200218 return 0;
219}
220
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100221static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
222 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Major Lee68077b02011-06-29 14:23:46 +0300223 .probe_slot = mrst_hc_probe_slot,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100224};
225
Jacob Pan35ac6f02010-11-09 13:57:29 +0000226static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100227 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000228 .probe = mrst_hc_probe,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100229};
230
Xiaochen Shen29229052010-10-04 15:24:52 +0100231static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
232 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300233 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200234 .own_cd_for_runtime_pm = true,
Xiaochen Shen29229052010-10-04 15:24:52 +0100235};
236
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300237static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = {
Xiaochen Shen29229052010-10-04 15:24:52 +0100238 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterf3c55a72012-02-07 14:48:55 +0200239 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300240 .allow_runtime_pm = true,
Adrian Hunter93933502011-12-27 15:48:47 +0200241 .probe_slot = mfd_sdio_probe_slot,
Xiaochen Shen29229052010-10-04 15:24:52 +0100242};
243
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300244static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = {
245 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300246 .allow_runtime_pm = true,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300247 .probe_slot = mfd_emmc_probe_slot,
248};
249
Alexander Stein296e0b02012-03-14 08:38:58 +0100250static const struct sdhci_pci_fixes sdhci_intel_pch_sdio = {
251 .quirks = SDHCI_QUIRK_BROKEN_ADMA,
252 .probe_slot = pch_hc_probe_slot,
253};
254
Adrian Hunterc9faff62013-06-13 11:50:26 +0300255static void sdhci_pci_int_hw_reset(struct sdhci_host *host)
256{
257 u8 reg;
258
259 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
260 reg |= 0x10;
261 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
262 /* For eMMC, minimum is 1us but give it 9us for good measure */
263 udelay(9);
264 reg &= ~0x10;
265 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
266 /* For eMMC, minimum is 200us but give it 300us for good measure */
267 usleep_range(300, 1000);
268}
269
Adrian Huntere1bfad62015-02-06 14:13:00 +0200270static int spt_select_drive_strength(struct sdhci_host *host,
271 struct mmc_card *card,
272 unsigned int max_dtr,
273 int host_drv, int card_drv, int *drv_type)
274{
275 int drive_strength;
276
277 if (sdhci_pci_spt_drive_strength > 0)
278 drive_strength = sdhci_pci_spt_drive_strength & 0xf;
279 else
Adrian Hunter1ca89682015-11-26 14:00:45 +0200280 drive_strength = 0; /* Default 50-ohm */
Adrian Huntere1bfad62015-02-06 14:13:00 +0200281
282 if ((mmc_driver_type_mask(drive_strength) & card_drv) == 0)
283 drive_strength = 0; /* Default 50-ohm */
284
285 return drive_strength;
286}
287
288/* Try to read the drive strength from the card */
289static void spt_read_drive_strength(struct sdhci_host *host)
290{
291 u32 val, i, t;
292 u16 m;
293
294 if (sdhci_pci_spt_drive_strength)
295 return;
296
297 sdhci_pci_spt_drive_strength = -1;
298
299 m = sdhci_readw(host, SDHCI_HOST_CONTROL2) & 0x7;
300 if (m != 3 && m != 5)
301 return;
302 val = sdhci_readl(host, SDHCI_PRESENT_STATE);
303 if (val & 0x3)
304 return;
305 sdhci_writel(host, 0x007f0023, SDHCI_INT_ENABLE);
306 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
307 sdhci_writew(host, 0x10, SDHCI_TRANSFER_MODE);
308 sdhci_writeb(host, 0xe, SDHCI_TIMEOUT_CONTROL);
309 sdhci_writew(host, 512, SDHCI_BLOCK_SIZE);
310 sdhci_writew(host, 1, SDHCI_BLOCK_COUNT);
311 sdhci_writel(host, 0, SDHCI_ARGUMENT);
312 sdhci_writew(host, 0x83b, SDHCI_COMMAND);
313 for (i = 0; i < 1000; i++) {
314 val = sdhci_readl(host, SDHCI_INT_STATUS);
315 if (val & 0xffff8000)
316 return;
317 if (val & 0x20)
318 break;
319 udelay(1);
320 }
321 val = sdhci_readl(host, SDHCI_PRESENT_STATE);
322 if (!(val & 0x800))
323 return;
324 for (i = 0; i < 47; i++)
325 val = sdhci_readl(host, SDHCI_BUFFER);
326 t = val & 0xf00;
327 if (t != 0x200 && t != 0x300)
328 return;
329
330 sdhci_pci_spt_drive_strength = 0x10 | ((val >> 12) & 0xf);
331}
332
Adrian Hunter163cbe32016-02-09 16:12:37 +0200333static int bxt_get_cd(struct mmc_host *mmc)
334{
335 int gpio_cd = mmc_gpio_get_cd(mmc);
336 struct sdhci_host *host = mmc_priv(mmc);
337 unsigned long flags;
338 int ret = 0;
339
340 if (!gpio_cd)
341 return 0;
342
Adrian Hunter163cbe32016-02-09 16:12:37 +0200343 spin_lock_irqsave(&host->lock, flags);
344
345 if (host->flags & SDHCI_DEVICE_DEAD)
346 goto out;
347
348 ret = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
349out:
350 spin_unlock_irqrestore(&host->lock, flags);
351
Adrian Hunter163cbe32016-02-09 16:12:37 +0200352 return ret;
353}
354
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300355static int byt_emmc_probe_slot(struct sdhci_pci_slot *slot)
356{
Adrian Hunterc9faff62013-06-13 11:50:26 +0300357 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
Adrian Hunter6aab23a2014-12-01 15:51:18 +0200358 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
Adrian Hunter6aab23a2014-12-01 15:51:18 +0200359 MMC_CAP_WAIT_WHILE_BUSY;
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300360 slot->host->mmc->caps2 |= MMC_CAP2_HC_ERASE_SZ;
Adrian Hunterc9faff62013-06-13 11:50:26 +0300361 slot->hw_reset = sdhci_pci_int_hw_reset;
Adrian Huntera06586b2014-09-24 10:27:33 +0300362 if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BSW_EMMC)
363 slot->host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
Adrian Huntere1bfad62015-02-06 14:13:00 +0200364 if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_SPT_EMMC) {
365 spt_read_drive_strength(slot->host);
366 slot->select_drive_strength = spt_select_drive_strength;
367 }
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300368 return 0;
369}
370
371static int byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
372{
Adrian Hunter6aab23a2014-12-01 15:51:18 +0200373 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE |
Adrian Hunter6aab23a2014-12-01 15:51:18 +0200374 MMC_CAP_WAIT_WHILE_BUSY;
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300375 return 0;
376}
377
Adrian Hunterff59c522014-09-24 10:27:31 +0300378static int byt_sd_probe_slot(struct sdhci_pci_slot *slot)
379{
Adrian Hunter82296932016-05-20 10:33:47 +0300380 slot->host->mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY;
Adrian Hunterff59c522014-09-24 10:27:31 +0300381 slot->cd_con_id = NULL;
382 slot->cd_idx = 0;
383 slot->cd_override_level = true;
Adrian Hunter163cbe32016-02-09 16:12:37 +0200384 if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXT_SD ||
Adrian Hunter01d6b2a2016-04-04 12:40:37 +0300385 slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXTM_SD ||
Adrian Huntere8ef5172016-04-12 14:25:05 +0300386 slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_APL_SD) {
Adrian Hunter163cbe32016-02-09 16:12:37 +0200387 slot->host->mmc_host_ops.get_cd = bxt_get_cd;
Adrian Huntere8ef5172016-04-12 14:25:05 +0300388 slot->host->mmc->caps |= MMC_CAP_AGGRESSIVE_PM;
389 }
Adrian Hunter163cbe32016-02-09 16:12:37 +0200390
Adrian Hunterff59c522014-09-24 10:27:31 +0300391 return 0;
392}
393
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300394static const struct sdhci_pci_fixes sdhci_intel_byt_emmc = {
395 .allow_runtime_pm = true,
396 .probe_slot = byt_emmc_probe_slot,
Adrian Hunterdb6e8cd2014-12-01 15:51:16 +0200397 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Huntere58e4a02014-09-24 10:27:30 +0300398 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
Adrian Hunterb69587e2015-02-06 14:13:01 +0200399 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 |
Adrian Huntere58e4a02014-09-24 10:27:30 +0300400 SDHCI_QUIRK2_STOP_WITH_TC,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300401};
402
403static const struct sdhci_pci_fixes sdhci_intel_byt_sdio = {
Adrian Hunterdb6e8cd2014-12-01 15:51:16 +0200404 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800405 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON |
406 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300407 .allow_runtime_pm = true,
408 .probe_slot = byt_sdio_probe_slot,
409};
410
411static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
Adrian Hunterdb6e8cd2014-12-01 15:51:16 +0200412 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800413 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
Adrian Huntere58e4a02014-09-24 10:27:30 +0300414 SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
415 SDHCI_QUIRK2_STOP_WITH_TC,
Adrian Hunter7396e312013-05-06 12:17:34 +0300416 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200417 .own_cd_for_runtime_pm = true,
Adrian Hunterff59c522014-09-24 10:27:31 +0300418 .probe_slot = byt_sd_probe_slot,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300419};
420
David Cohen8776a162013-10-01 13:18:15 -0700421/* Define Host controllers for Intel Merrifield platform */
422#define INTEL_MRFL_EMMC_0 0
423#define INTEL_MRFL_EMMC_1 1
424
425static int intel_mrfl_mmc_probe_slot(struct sdhci_pci_slot *slot)
426{
427 if ((PCI_FUNC(slot->chip->pdev->devfn) != INTEL_MRFL_EMMC_0) &&
428 (PCI_FUNC(slot->chip->pdev->devfn) != INTEL_MRFL_EMMC_1))
429 /* SD support is not ready yet */
430 return -ENODEV;
431
432 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
433 MMC_CAP_1_8V_DDR;
434
435 return 0;
436}
437
438static const struct sdhci_pci_fixes sdhci_intel_mrfl_mmc = {
439 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800440 .quirks2 = SDHCI_QUIRK2_BROKEN_HS200 |
441 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Gao, Yunpengf1b55a52014-08-18 15:05:52 +0800442 .allow_runtime_pm = true,
David Cohen8776a162013-10-01 13:18:15 -0700443 .probe_slot = intel_mrfl_mmc_probe_slot,
444};
445
Jennifer Li26daa1e2010-11-17 23:01:59 -0500446/* O2Micro extra registers */
447#define O2_SD_LOCK_WP 0xD3
448#define O2_SD_MULTI_VCC3V 0xEE
449#define O2_SD_CLKREQ 0xEC
450#define O2_SD_CAPS 0xE0
451#define O2_SD_ADMA1 0xE2
452#define O2_SD_ADMA2 0xE7
453#define O2_SD_INF_MOD 0xF1
454
Pierre Ossman45211e22008-03-24 13:09:09 +0100455static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
456{
457 u8 scratch;
458 int ret;
459
460 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
461 if (ret)
462 return ret;
463
464 /*
465 * Turn PMOS on [bit 0], set over current detection to 2.4 V
466 * [bit 1:2] and enable over current debouncing [bit 6].
467 */
468 if (on)
469 scratch |= 0x47;
470 else
471 scratch &= ~0x47;
472
kbuild test robot75820412015-10-06 04:01:04 +0800473 return pci_write_config_byte(chip->pdev, 0xAE, scratch);
Pierre Ossman45211e22008-03-24 13:09:09 +0100474}
475
476static int jmicron_probe(struct sdhci_pci_chip *chip)
477{
478 int ret;
Takashi Iwai8f230f42010-12-08 10:04:30 +0100479 u16 mmcdev = 0;
Pierre Ossman45211e22008-03-24 13:09:09 +0100480
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200481 if (chip->pdev->revision == 0) {
482 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
483 SDHCI_QUIRK_32BIT_DMA_SIZE |
Pierre Ossman2134a922008-06-28 18:28:51 +0200484 SDHCI_QUIRK_32BIT_ADMA_SIZE |
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200485 SDHCI_QUIRK_RESET_AFTER_REQUEST |
Pierre Ossman86a6a872009-02-02 21:13:49 +0100486 SDHCI_QUIRK_BROKEN_SMALL_PIO;
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200487 }
488
Pierre Ossman45211e22008-03-24 13:09:09 +0100489 /*
Pierre Ossman44894282008-04-04 19:36:59 +0200490 * JMicron chips can have two interfaces to the same hardware
491 * in order to work around limitations in Microsoft's driver.
492 * We need to make sure we only bind to one of them.
493 *
494 * This code assumes two things:
495 *
496 * 1. The PCI code adds subfunctions in order.
497 *
498 * 2. The MMC interface has a lower subfunction number
499 * than the SD interface.
500 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100501 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD)
502 mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC;
503 else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD)
504 mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD;
505
506 if (mmcdev) {
Pierre Ossman44894282008-04-04 19:36:59 +0200507 struct pci_dev *sd_dev;
508
509 sd_dev = NULL;
510 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
Takashi Iwai8f230f42010-12-08 10:04:30 +0100511 mmcdev, sd_dev)) != NULL) {
Pierre Ossman44894282008-04-04 19:36:59 +0200512 if ((PCI_SLOT(chip->pdev->devfn) ==
513 PCI_SLOT(sd_dev->devfn)) &&
514 (chip->pdev->bus == sd_dev->bus))
515 break;
516 }
517
518 if (sd_dev) {
519 pci_dev_put(sd_dev);
520 dev_info(&chip->pdev->dev, "Refusing to bind to "
521 "secondary interface.\n");
522 return -ENODEV;
523 }
524 }
525
526 /*
Pierre Ossman45211e22008-03-24 13:09:09 +0100527 * JMicron chips need a bit of a nudge to enable the power
528 * output pins.
529 */
530 ret = jmicron_pmos(chip, 1);
531 if (ret) {
532 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
533 return ret;
534 }
535
Takashi Iwai82b0e232011-04-21 20:26:38 +0200536 /* quirk for unsable RO-detection on JM388 chips */
537 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD ||
538 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
539 chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT;
540
Pierre Ossman45211e22008-03-24 13:09:09 +0100541 return 0;
542}
543
Pierre Ossman44894282008-04-04 19:36:59 +0200544static void jmicron_enable_mmc(struct sdhci_host *host, int on)
545{
546 u8 scratch;
547
548 scratch = readb(host->ioaddr + 0xC0);
549
550 if (on)
551 scratch |= 0x01;
552 else
553 scratch &= ~0x01;
554
555 writeb(scratch, host->ioaddr + 0xC0);
556}
557
558static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
559{
Pierre Ossman2134a922008-06-28 18:28:51 +0200560 if (slot->chip->pdev->revision == 0) {
561 u16 version;
562
563 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
564 version = (version & SDHCI_VENDOR_VER_MASK) >>
565 SDHCI_VENDOR_VER_SHIFT;
566
567 /*
568 * Older versions of the chip have lots of nasty glitches
569 * in the ADMA engine. It's best just to avoid it
570 * completely.
571 */
572 if (version < 0xAC)
573 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
574 }
575
Takashi Iwai8f230f42010-12-08 10:04:30 +0100576 /* JM388 MMC doesn't support 1.8V while SD supports it */
577 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
578 slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 |
579 MMC_VDD_29_30 | MMC_VDD_30_31 |
580 MMC_VDD_165_195; /* allow 1.8V */
581 slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 |
582 MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */
583 }
584
Pierre Ossman44894282008-04-04 19:36:59 +0200585 /*
586 * The secondary interface requires a bit set to get the
587 * interrupts.
588 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100589 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
590 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200591 jmicron_enable_mmc(slot->host, 1);
592
Takashi Iwaid75c1082010-12-16 17:54:14 +0100593 slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST;
594
Pierre Ossman44894282008-04-04 19:36:59 +0200595 return 0;
596}
597
Pierre Ossman1e728592008-04-16 19:13:13 +0200598static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
Pierre Ossman44894282008-04-04 19:36:59 +0200599{
Pierre Ossman1e728592008-04-16 19:13:13 +0200600 if (dead)
601 return;
602
Takashi Iwai8f230f42010-12-08 10:04:30 +0100603 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
604 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200605 jmicron_enable_mmc(slot->host, 0);
606}
607
Manuel Lauss29495aa2011-11-03 11:09:45 +0100608static int jmicron_suspend(struct sdhci_pci_chip *chip)
Pierre Ossman44894282008-04-04 19:36:59 +0200609{
610 int i;
611
Takashi Iwai8f230f42010-12-08 10:04:30 +0100612 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
613 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300614 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200615 jmicron_enable_mmc(chip->slots[i]->host, 0);
616 }
617
618 return 0;
619}
620
Pierre Ossman45211e22008-03-24 13:09:09 +0100621static int jmicron_resume(struct sdhci_pci_chip *chip)
622{
Pierre Ossman44894282008-04-04 19:36:59 +0200623 int ret, i;
624
Takashi Iwai8f230f42010-12-08 10:04:30 +0100625 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
626 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300627 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200628 jmicron_enable_mmc(chip->slots[i]->host, 1);
629 }
Pierre Ossman45211e22008-03-24 13:09:09 +0100630
631 ret = jmicron_pmos(chip, 1);
632 if (ret) {
633 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
634 return ret;
635 }
636
637 return 0;
638}
639
Jennifer Li26daa1e2010-11-17 23:01:59 -0500640static const struct sdhci_pci_fixes sdhci_o2 = {
Adam Lee01acf692013-12-19 00:01:26 +0800641 .probe = sdhci_pci_o2_probe,
642 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adam Lee143b6482015-08-03 14:33:28 +0800643 .quirks2 = SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD,
Adam Lee01acf692013-12-19 00:01:26 +0800644 .probe_slot = sdhci_pci_o2_probe_slot,
645 .resume = sdhci_pci_o2_resume,
Jennifer Li26daa1e2010-11-17 23:01:59 -0500646};
647
Pierre Ossman22606402008-03-23 19:33:23 +0100648static const struct sdhci_pci_fixes sdhci_jmicron = {
Pierre Ossman45211e22008-03-24 13:09:09 +0100649 .probe = jmicron_probe,
650
Pierre Ossman44894282008-04-04 19:36:59 +0200651 .probe_slot = jmicron_probe_slot,
652 .remove_slot = jmicron_remove_slot,
653
654 .suspend = jmicron_suspend,
Pierre Ossman45211e22008-03-24 13:09:09 +0100655 .resume = jmicron_resume,
Pierre Ossman22606402008-03-23 19:33:23 +0100656};
657
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800658/* SysKonnect CardBus2SDIO extra registers */
659#define SYSKT_CTRL 0x200
660#define SYSKT_RDFIFO_STAT 0x204
661#define SYSKT_WRFIFO_STAT 0x208
662#define SYSKT_POWER_DATA 0x20c
663#define SYSKT_POWER_330 0xef
664#define SYSKT_POWER_300 0xf8
665#define SYSKT_POWER_184 0xcc
666#define SYSKT_POWER_CMD 0x20d
667#define SYSKT_POWER_START (1 << 7)
668#define SYSKT_POWER_STATUS 0x20e
669#define SYSKT_POWER_STATUS_OK (1 << 0)
670#define SYSKT_BOARD_REV 0x210
671#define SYSKT_CHIP_REV 0x211
672#define SYSKT_CONF_DATA 0x212
673#define SYSKT_CONF_DATA_1V8 (1 << 2)
674#define SYSKT_CONF_DATA_2V5 (1 << 1)
675#define SYSKT_CONF_DATA_3V3 (1 << 0)
676
677static int syskt_probe(struct sdhci_pci_chip *chip)
678{
679 if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
680 chip->pdev->class &= ~0x0000FF;
681 chip->pdev->class |= PCI_SDHCI_IFDMA;
682 }
683 return 0;
684}
685
686static int syskt_probe_slot(struct sdhci_pci_slot *slot)
687{
688 int tm, ps;
689
690 u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
691 u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
692 dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
693 "board rev %d.%d, chip rev %d.%d\n",
694 board_rev >> 4, board_rev & 0xf,
695 chip_rev >> 4, chip_rev & 0xf);
696 if (chip_rev >= 0x20)
697 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
698
699 writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
700 writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
701 udelay(50);
702 tm = 10; /* Wait max 1 ms */
703 do {
704 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
705 if (ps & SYSKT_POWER_STATUS_OK)
706 break;
707 udelay(100);
708 } while (--tm);
709 if (!tm) {
710 dev_err(&slot->chip->pdev->dev,
711 "power regulator never stabilized");
712 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
713 return -ENODEV;
714 }
715
716 return 0;
717}
718
719static const struct sdhci_pci_fixes sdhci_syskt = {
720 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
721 .probe = syskt_probe,
722 .probe_slot = syskt_probe_slot,
723};
724
Harald Welte557b0692009-06-18 16:53:38 +0200725static int via_probe(struct sdhci_pci_chip *chip)
726{
727 if (chip->pdev->revision == 0x10)
728 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
729
730 return 0;
731}
732
733static const struct sdhci_pci_fixes sdhci_via = {
734 .probe = via_probe,
735};
736
Micky Ching9107ebb2014-02-21 18:40:35 +0800737static int rtsx_probe_slot(struct sdhci_pci_slot *slot)
738{
739 slot->host->mmc->caps2 |= MMC_CAP2_HS200;
740 return 0;
741}
742
743static const struct sdhci_pci_fixes sdhci_rtsx = {
744 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
Micky Chinge30b9782015-04-07 11:32:01 +0800745 SDHCI_QUIRK2_BROKEN_64_BIT_DMA |
Micky Ching9107ebb2014-02-21 18:40:35 +0800746 SDHCI_QUIRK2_BROKEN_DDR50,
747 .probe_slot = rtsx_probe_slot,
748};
749
Vincent Wanb5e97d62015-06-11 20:11:47 +0800750/*AMD chipset generation*/
751enum amd_chipset_gen {
752 AMD_CHIPSET_BEFORE_ML,
753 AMD_CHIPSET_CZ,
754 AMD_CHIPSET_NL,
755 AMD_CHIPSET_UNKNOWN,
756};
757
Vincent Wand44f88d2014-11-05 14:09:14 +0800758static int amd_probe(struct sdhci_pci_chip *chip)
759{
760 struct pci_dev *smbus_dev;
Vincent Wanb5e97d62015-06-11 20:11:47 +0800761 enum amd_chipset_gen gen;
Vincent Wand44f88d2014-11-05 14:09:14 +0800762
763 smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD,
764 PCI_DEVICE_ID_AMD_HUDSON2_SMBUS, NULL);
Vincent Wanb5e97d62015-06-11 20:11:47 +0800765 if (smbus_dev) {
766 gen = AMD_CHIPSET_BEFORE_ML;
767 } else {
768 smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD,
769 PCI_DEVICE_ID_AMD_KERNCZ_SMBUS, NULL);
770 if (smbus_dev) {
771 if (smbus_dev->revision < 0x51)
772 gen = AMD_CHIPSET_CZ;
773 else
774 gen = AMD_CHIPSET_NL;
775 } else {
776 gen = AMD_CHIPSET_UNKNOWN;
777 }
778 }
Vincent Wand44f88d2014-11-05 14:09:14 +0800779
Vincent Wanb5e97d62015-06-11 20:11:47 +0800780 if ((gen == AMD_CHIPSET_BEFORE_ML) || (gen == AMD_CHIPSET_CZ)) {
Vincent Wand44f88d2014-11-05 14:09:14 +0800781 chip->quirks2 |= SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD;
Vincent Wane765bfa2014-11-05 14:09:28 +0800782 chip->quirks2 |= SDHCI_QUIRK2_BROKEN_HS200;
783 }
Vincent Wand44f88d2014-11-05 14:09:14 +0800784
785 return 0;
786}
787
788static const struct sdhci_pci_fixes sdhci_amd = {
789 .probe = amd_probe,
790};
791
Bill Pemberton9647f842012-11-19 13:25:11 -0500792static const struct pci_device_id pci_ids[] = {
Pierre Ossman22606402008-03-23 19:33:23 +0100793 {
794 .vendor = PCI_VENDOR_ID_RICOH,
795 .device = PCI_DEVICE_ID_RICOH_R5C822,
796 .subvendor = PCI_ANY_ID,
797 .subdevice = PCI_ANY_ID,
798 .driver_data = (kernel_ulong_t)&sdhci_ricoh,
799 },
800
801 {
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700802 .vendor = PCI_VENDOR_ID_RICOH,
803 .device = 0x843,
804 .subvendor = PCI_ANY_ID,
805 .subdevice = PCI_ANY_ID,
806 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
807 },
808
809 {
Pablo Castillo568133e2010-08-10 18:02:01 -0700810 .vendor = PCI_VENDOR_ID_RICOH,
811 .device = 0xe822,
812 .subvendor = PCI_ANY_ID,
813 .subdevice = PCI_ANY_ID,
814 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
815 },
816
817 {
Manoj Iyer5fd11c02011-02-11 16:25:31 -0600818 .vendor = PCI_VENDOR_ID_RICOH,
819 .device = 0xe823,
820 .subvendor = PCI_ANY_ID,
821 .subdevice = PCI_ANY_ID,
822 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
823 },
824
825 {
Pierre Ossman22606402008-03-23 19:33:23 +0100826 .vendor = PCI_VENDOR_ID_ENE,
827 .device = PCI_DEVICE_ID_ENE_CB712_SD,
828 .subvendor = PCI_ANY_ID,
829 .subdevice = PCI_ANY_ID,
830 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
831 },
832
833 {
834 .vendor = PCI_VENDOR_ID_ENE,
835 .device = PCI_DEVICE_ID_ENE_CB712_SD_2,
836 .subvendor = PCI_ANY_ID,
837 .subdevice = PCI_ANY_ID,
838 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
839 },
840
841 {
842 .vendor = PCI_VENDOR_ID_ENE,
843 .device = PCI_DEVICE_ID_ENE_CB714_SD,
844 .subvendor = PCI_ANY_ID,
845 .subdevice = PCI_ANY_ID,
846 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
847 },
848
849 {
850 .vendor = PCI_VENDOR_ID_ENE,
851 .device = PCI_DEVICE_ID_ENE_CB714_SD_2,
852 .subvendor = PCI_ANY_ID,
853 .subdevice = PCI_ANY_ID,
854 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
855 },
856
857 {
858 .vendor = PCI_VENDOR_ID_MARVELL,
David Woodhouse8c5eb882008-09-03 09:45:57 +0100859 .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD,
Pierre Ossman22606402008-03-23 19:33:23 +0100860 .subvendor = PCI_ANY_ID,
861 .subdevice = PCI_ANY_ID,
862 .driver_data = (kernel_ulong_t)&sdhci_cafe,
863 },
864
865 {
866 .vendor = PCI_VENDOR_ID_JMICRON,
867 .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD,
868 .subvendor = PCI_ANY_ID,
869 .subdevice = PCI_ANY_ID,
870 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
871 },
872
Pierre Ossman44894282008-04-04 19:36:59 +0200873 {
874 .vendor = PCI_VENDOR_ID_JMICRON,
875 .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC,
876 .subvendor = PCI_ANY_ID,
877 .subdevice = PCI_ANY_ID,
878 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
879 },
880
Harald Welte557b0692009-06-18 16:53:38 +0200881 {
Takashi Iwai8f230f42010-12-08 10:04:30 +0100882 .vendor = PCI_VENDOR_ID_JMICRON,
883 .device = PCI_DEVICE_ID_JMICRON_JMB388_SD,
884 .subvendor = PCI_ANY_ID,
885 .subdevice = PCI_ANY_ID,
886 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
887 },
888
889 {
890 .vendor = PCI_VENDOR_ID_JMICRON,
891 .device = PCI_DEVICE_ID_JMICRON_JMB388_ESD,
892 .subvendor = PCI_ANY_ID,
893 .subdevice = PCI_ANY_ID,
894 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
895 },
896
897 {
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800898 .vendor = PCI_VENDOR_ID_SYSKONNECT,
899 .device = 0x8000,
900 .subvendor = PCI_ANY_ID,
901 .subdevice = PCI_ANY_ID,
902 .driver_data = (kernel_ulong_t)&sdhci_syskt,
903 },
904
905 {
Harald Welte557b0692009-06-18 16:53:38 +0200906 .vendor = PCI_VENDOR_ID_VIA,
907 .device = 0x95d0,
908 .subvendor = PCI_ANY_ID,
909 .subdevice = PCI_ANY_ID,
910 .driver_data = (kernel_ulong_t)&sdhci_via,
911 },
912
Xiaochen Shen29229052010-10-04 15:24:52 +0100913 {
Micky Ching9107ebb2014-02-21 18:40:35 +0800914 .vendor = PCI_VENDOR_ID_REALTEK,
915 .device = 0x5250,
916 .subvendor = PCI_ANY_ID,
917 .subdevice = PCI_ANY_ID,
918 .driver_data = (kernel_ulong_t)&sdhci_rtsx,
919 },
920
921 {
Xiaochen Shen29229052010-10-04 15:24:52 +0100922 .vendor = PCI_VENDOR_ID_INTEL,
Derek Browne43e968c2014-06-24 06:56:36 -0700923 .device = PCI_DEVICE_ID_INTEL_QRK_SD,
924 .subvendor = PCI_ANY_ID,
925 .subdevice = PCI_ANY_ID,
926 .driver_data = (kernel_ulong_t)&sdhci_intel_qrk,
927 },
928
929 {
930 .vendor = PCI_VENDOR_ID_INTEL,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100931 .device = PCI_DEVICE_ID_INTEL_MRST_SD0,
932 .subvendor = PCI_ANY_ID,
933 .subdevice = PCI_ANY_ID,
934 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc0,
935 },
936
937 {
938 .vendor = PCI_VENDOR_ID_INTEL,
939 .device = PCI_DEVICE_ID_INTEL_MRST_SD1,
940 .subvendor = PCI_ANY_ID,
941 .subdevice = PCI_ANY_ID,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000942 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
943 },
944
945 {
946 .vendor = PCI_VENDOR_ID_INTEL,
947 .device = PCI_DEVICE_ID_INTEL_MRST_SD2,
948 .subvendor = PCI_ANY_ID,
949 .subdevice = PCI_ANY_ID,
950 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100951 },
952
953 {
954 .vendor = PCI_VENDOR_ID_INTEL,
Xiaochen Shen29229052010-10-04 15:24:52 +0100955 .device = PCI_DEVICE_ID_INTEL_MFD_SD,
956 .subvendor = PCI_ANY_ID,
957 .subdevice = PCI_ANY_ID,
958 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
959 },
960
961 {
962 .vendor = PCI_VENDOR_ID_INTEL,
963 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO1,
964 .subvendor = PCI_ANY_ID,
965 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300966 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100967 },
968
969 {
970 .vendor = PCI_VENDOR_ID_INTEL,
971 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO2,
972 .subvendor = PCI_ANY_ID,
973 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300974 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100975 },
976
977 {
978 .vendor = PCI_VENDOR_ID_INTEL,
979 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC0,
980 .subvendor = PCI_ANY_ID,
981 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300982 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100983 },
984
985 {
986 .vendor = PCI_VENDOR_ID_INTEL,
987 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC1,
988 .subvendor = PCI_ANY_ID,
989 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300990 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100991 },
992
Jennifer Li26daa1e2010-11-17 23:01:59 -0500993 {
Alexander Stein296e0b02012-03-14 08:38:58 +0100994 .vendor = PCI_VENDOR_ID_INTEL,
995 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO0,
996 .subvendor = PCI_ANY_ID,
997 .subdevice = PCI_ANY_ID,
998 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
999 },
1000
1001 {
1002 .vendor = PCI_VENDOR_ID_INTEL,
1003 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO1,
1004 .subvendor = PCI_ANY_ID,
1005 .subdevice = PCI_ANY_ID,
1006 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
1007 },
1008
1009 {
Adrian Hunter728ef3d2013-04-26 11:27:23 +03001010 .vendor = PCI_VENDOR_ID_INTEL,
1011 .device = PCI_DEVICE_ID_INTEL_BYT_EMMC,
1012 .subvendor = PCI_ANY_ID,
1013 .subdevice = PCI_ANY_ID,
1014 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
1015 },
1016
1017 {
1018 .vendor = PCI_VENDOR_ID_INTEL,
1019 .device = PCI_DEVICE_ID_INTEL_BYT_SDIO,
1020 .subvendor = PCI_ANY_ID,
1021 .subdevice = PCI_ANY_ID,
1022 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
1023 },
1024
1025 {
1026 .vendor = PCI_VENDOR_ID_INTEL,
1027 .device = PCI_DEVICE_ID_INTEL_BYT_SD,
1028 .subvendor = PCI_ANY_ID,
1029 .subdevice = PCI_ANY_ID,
1030 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
1031 },
1032
1033 {
Adrian Hunter30d025c2013-06-20 12:57:59 +03001034 .vendor = PCI_VENDOR_ID_INTEL,
1035 .device = PCI_DEVICE_ID_INTEL_BYT_EMMC2,
1036 .subvendor = PCI_ANY_ID,
1037 .subdevice = PCI_ANY_ID,
1038 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
1039 },
1040
Alan Cox066173b2014-08-20 13:27:44 +03001041 {
1042 .vendor = PCI_VENDOR_ID_INTEL,
1043 .device = PCI_DEVICE_ID_INTEL_BSW_EMMC,
1044 .subvendor = PCI_ANY_ID,
1045 .subdevice = PCI_ANY_ID,
1046 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
1047 },
1048
1049 {
1050 .vendor = PCI_VENDOR_ID_INTEL,
1051 .device = PCI_DEVICE_ID_INTEL_BSW_SDIO,
1052 .subvendor = PCI_ANY_ID,
1053 .subdevice = PCI_ANY_ID,
1054 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
1055 },
1056
1057 {
1058 .vendor = PCI_VENDOR_ID_INTEL,
1059 .device = PCI_DEVICE_ID_INTEL_BSW_SD,
1060 .subvendor = PCI_ANY_ID,
1061 .subdevice = PCI_ANY_ID,
1062 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
1063 },
Eric Ernstd0520682013-10-21 09:54:41 -07001064
1065 {
1066 .vendor = PCI_VENDOR_ID_INTEL,
1067 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO0,
1068 .subvendor = PCI_ANY_ID,
1069 .subdevice = PCI_ANY_ID,
1070 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
1071 },
1072
1073 {
1074 .vendor = PCI_VENDOR_ID_INTEL,
1075 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO1,
1076 .subvendor = PCI_ANY_ID,
1077 .subdevice = PCI_ANY_ID,
1078 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
1079 },
1080
1081 {
1082 .vendor = PCI_VENDOR_ID_INTEL,
1083 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO2,
1084 .subvendor = PCI_ANY_ID,
1085 .subdevice = PCI_ANY_ID,
1086 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
1087 },
1088
1089 {
1090 .vendor = PCI_VENDOR_ID_INTEL,
1091 .device = PCI_DEVICE_ID_INTEL_CLV_EMMC0,
1092 .subvendor = PCI_ANY_ID,
1093 .subdevice = PCI_ANY_ID,
1094 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
1095 },
1096
1097 {
1098 .vendor = PCI_VENDOR_ID_INTEL,
1099 .device = PCI_DEVICE_ID_INTEL_CLV_EMMC1,
1100 .subvendor = PCI_ANY_ID,
1101 .subdevice = PCI_ANY_ID,
1102 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
1103 },
1104
Adrian Hunter30d025c2013-06-20 12:57:59 +03001105 {
David Cohen8776a162013-10-01 13:18:15 -07001106 .vendor = PCI_VENDOR_ID_INTEL,
1107 .device = PCI_DEVICE_ID_INTEL_MRFL_MMC,
1108 .subvendor = PCI_ANY_ID,
1109 .subdevice = PCI_ANY_ID,
1110 .driver_data = (kernel_ulong_t)&sdhci_intel_mrfl_mmc,
1111 },
Adrian Hunter1f7f2652015-01-05 14:47:58 +02001112
1113 {
1114 .vendor = PCI_VENDOR_ID_INTEL,
1115 .device = PCI_DEVICE_ID_INTEL_SPT_EMMC,
1116 .subvendor = PCI_ANY_ID,
1117 .subdevice = PCI_ANY_ID,
1118 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
1119 },
1120
1121 {
1122 .vendor = PCI_VENDOR_ID_INTEL,
1123 .device = PCI_DEVICE_ID_INTEL_SPT_SDIO,
1124 .subvendor = PCI_ANY_ID,
1125 .subdevice = PCI_ANY_ID,
1126 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
1127 },
1128
1129 {
1130 .vendor = PCI_VENDOR_ID_INTEL,
1131 .device = PCI_DEVICE_ID_INTEL_SPT_SD,
1132 .subvendor = PCI_ANY_ID,
1133 .subdevice = PCI_ANY_ID,
1134 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
1135 },
1136
David Cohen8776a162013-10-01 13:18:15 -07001137 {
Adrian Hunter06bf9c52015-10-06 10:26:21 +03001138 .vendor = PCI_VENDOR_ID_INTEL,
1139 .device = PCI_DEVICE_ID_INTEL_DNV_EMMC,
1140 .subvendor = PCI_ANY_ID,
1141 .subdevice = PCI_ANY_ID,
1142 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
1143 },
1144
1145 {
Adrian Hunter4fd4c062015-10-21 11:15:45 +03001146 .vendor = PCI_VENDOR_ID_INTEL,
1147 .device = PCI_DEVICE_ID_INTEL_BXT_EMMC,
1148 .subvendor = PCI_ANY_ID,
1149 .subdevice = PCI_ANY_ID,
1150 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
1151 },
1152
1153 {
1154 .vendor = PCI_VENDOR_ID_INTEL,
1155 .device = PCI_DEVICE_ID_INTEL_BXT_SDIO,
1156 .subvendor = PCI_ANY_ID,
1157 .subdevice = PCI_ANY_ID,
1158 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
1159 },
1160
1161 {
1162 .vendor = PCI_VENDOR_ID_INTEL,
1163 .device = PCI_DEVICE_ID_INTEL_BXT_SD,
1164 .subvendor = PCI_ANY_ID,
1165 .subdevice = PCI_ANY_ID,
1166 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
1167 },
1168
1169 {
1170 .vendor = PCI_VENDOR_ID_INTEL,
Adrian Hunter01d6b2a2016-04-04 12:40:37 +03001171 .device = PCI_DEVICE_ID_INTEL_BXTM_EMMC,
1172 .subvendor = PCI_ANY_ID,
1173 .subdevice = PCI_ANY_ID,
1174 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
1175 },
1176
1177 {
1178 .vendor = PCI_VENDOR_ID_INTEL,
1179 .device = PCI_DEVICE_ID_INTEL_BXTM_SDIO,
1180 .subvendor = PCI_ANY_ID,
1181 .subdevice = PCI_ANY_ID,
1182 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
1183 },
1184
1185 {
1186 .vendor = PCI_VENDOR_ID_INTEL,
1187 .device = PCI_DEVICE_ID_INTEL_BXTM_SD,
1188 .subvendor = PCI_ANY_ID,
1189 .subdevice = PCI_ANY_ID,
1190 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
1191 },
1192
1193 {
1194 .vendor = PCI_VENDOR_ID_INTEL,
Adrian Hunter4fd4c062015-10-21 11:15:45 +03001195 .device = PCI_DEVICE_ID_INTEL_APL_EMMC,
1196 .subvendor = PCI_ANY_ID,
1197 .subdevice = PCI_ANY_ID,
1198 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
1199 },
1200
1201 {
1202 .vendor = PCI_VENDOR_ID_INTEL,
1203 .device = PCI_DEVICE_ID_INTEL_APL_SDIO,
1204 .subvendor = PCI_ANY_ID,
1205 .subdevice = PCI_ANY_ID,
1206 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
1207 },
1208
1209 {
1210 .vendor = PCI_VENDOR_ID_INTEL,
1211 .device = PCI_DEVICE_ID_INTEL_APL_SD,
1212 .subvendor = PCI_ANY_ID,
1213 .subdevice = PCI_ANY_ID,
1214 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
1215 },
1216
1217 {
Jennifer Li26daa1e2010-11-17 23:01:59 -05001218 .vendor = PCI_VENDOR_ID_O2,
1219 .device = PCI_DEVICE_ID_O2_8120,
1220 .subvendor = PCI_ANY_ID,
1221 .subdevice = PCI_ANY_ID,
1222 .driver_data = (kernel_ulong_t)&sdhci_o2,
1223 },
1224
1225 {
1226 .vendor = PCI_VENDOR_ID_O2,
1227 .device = PCI_DEVICE_ID_O2_8220,
1228 .subvendor = PCI_ANY_ID,
1229 .subdevice = PCI_ANY_ID,
1230 .driver_data = (kernel_ulong_t)&sdhci_o2,
1231 },
1232
1233 {
1234 .vendor = PCI_VENDOR_ID_O2,
1235 .device = PCI_DEVICE_ID_O2_8221,
1236 .subvendor = PCI_ANY_ID,
1237 .subdevice = PCI_ANY_ID,
1238 .driver_data = (kernel_ulong_t)&sdhci_o2,
1239 },
1240
1241 {
1242 .vendor = PCI_VENDOR_ID_O2,
1243 .device = PCI_DEVICE_ID_O2_8320,
1244 .subvendor = PCI_ANY_ID,
1245 .subdevice = PCI_ANY_ID,
1246 .driver_data = (kernel_ulong_t)&sdhci_o2,
1247 },
1248
1249 {
1250 .vendor = PCI_VENDOR_ID_O2,
1251 .device = PCI_DEVICE_ID_O2_8321,
1252 .subvendor = PCI_ANY_ID,
1253 .subdevice = PCI_ANY_ID,
1254 .driver_data = (kernel_ulong_t)&sdhci_o2,
1255 },
1256
Adam Lee01acf692013-12-19 00:01:26 +08001257 {
1258 .vendor = PCI_VENDOR_ID_O2,
1259 .device = PCI_DEVICE_ID_O2_FUJIN2,
1260 .subvendor = PCI_ANY_ID,
1261 .subdevice = PCI_ANY_ID,
1262 .driver_data = (kernel_ulong_t)&sdhci_o2,
1263 },
1264
1265 {
1266 .vendor = PCI_VENDOR_ID_O2,
1267 .device = PCI_DEVICE_ID_O2_SDS0,
1268 .subvendor = PCI_ANY_ID,
1269 .subdevice = PCI_ANY_ID,
1270 .driver_data = (kernel_ulong_t)&sdhci_o2,
1271 },
1272
1273 {
1274 .vendor = PCI_VENDOR_ID_O2,
1275 .device = PCI_DEVICE_ID_O2_SDS1,
1276 .subvendor = PCI_ANY_ID,
1277 .subdevice = PCI_ANY_ID,
1278 .driver_data = (kernel_ulong_t)&sdhci_o2,
1279 },
1280
1281 {
1282 .vendor = PCI_VENDOR_ID_O2,
1283 .device = PCI_DEVICE_ID_O2_SEABIRD0,
1284 .subvendor = PCI_ANY_ID,
1285 .subdevice = PCI_ANY_ID,
1286 .driver_data = (kernel_ulong_t)&sdhci_o2,
1287 },
1288
1289 {
1290 .vendor = PCI_VENDOR_ID_O2,
1291 .device = PCI_DEVICE_ID_O2_SEABIRD1,
1292 .subvendor = PCI_ANY_ID,
1293 .subdevice = PCI_ANY_ID,
1294 .driver_data = (kernel_ulong_t)&sdhci_o2,
1295 },
Vincent Wand44f88d2014-11-05 14:09:14 +08001296 {
1297 .vendor = PCI_VENDOR_ID_AMD,
1298 .device = PCI_ANY_ID,
1299 .class = PCI_CLASS_SYSTEM_SDHCI << 8,
1300 .class_mask = 0xFFFF00,
1301 .subvendor = PCI_ANY_ID,
1302 .subdevice = PCI_ANY_ID,
1303 .driver_data = (kernel_ulong_t)&sdhci_amd,
1304 },
Pierre Ossman22606402008-03-23 19:33:23 +01001305 { /* Generic SD host controller */
1306 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00)
1307 },
1308
1309 { /* end: all zeroes */ },
1310};
1311
1312MODULE_DEVICE_TABLE(pci, pci_ids);
1313
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001314/*****************************************************************************\
1315 * *
1316 * SDHCI core callbacks *
1317 * *
1318\*****************************************************************************/
1319
1320static int sdhci_pci_enable_dma(struct sdhci_host *host)
1321{
1322 struct sdhci_pci_slot *slot;
1323 struct pci_dev *pdev;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001324
1325 slot = sdhci_priv(host);
1326 pdev = slot->chip->pdev;
1327
1328 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
1329 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07001330 (host->flags & SDHCI_USE_SDMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001331 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
1332 "doesn't fully claim to support it.\n");
1333 }
1334
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001335 pci_set_master(pdev);
1336
1337 return 0;
1338}
1339
Russell King2317f562014-04-25 12:57:07 +01001340static void sdhci_pci_set_bus_width(struct sdhci_host *host, int width)
Major Lee68077b02011-06-29 14:23:46 +03001341{
1342 u8 ctrl;
1343
1344 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1345
1346 switch (width) {
1347 case MMC_BUS_WIDTH_8:
1348 ctrl |= SDHCI_CTRL_8BITBUS;
1349 ctrl &= ~SDHCI_CTRL_4BITBUS;
1350 break;
1351 case MMC_BUS_WIDTH_4:
1352 ctrl |= SDHCI_CTRL_4BITBUS;
1353 ctrl &= ~SDHCI_CTRL_8BITBUS;
1354 break;
1355 default:
1356 ctrl &= ~(SDHCI_CTRL_8BITBUS | SDHCI_CTRL_4BITBUS);
1357 break;
1358 }
1359
1360 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Major Lee68077b02011-06-29 14:23:46 +03001361}
1362
Adrian Hunterc9faff62013-06-13 11:50:26 +03001363static void sdhci_pci_gpio_hw_reset(struct sdhci_host *host)
Adrian Hunter0f201652011-08-29 16:42:13 +03001364{
1365 struct sdhci_pci_slot *slot = sdhci_priv(host);
1366 int rst_n_gpio = slot->rst_n_gpio;
1367
1368 if (!gpio_is_valid(rst_n_gpio))
1369 return;
1370 gpio_set_value_cansleep(rst_n_gpio, 0);
1371 /* For eMMC, minimum is 1us but give it 10us for good measure */
1372 udelay(10);
1373 gpio_set_value_cansleep(rst_n_gpio, 1);
1374 /* For eMMC, minimum is 200us but give it 300us for good measure */
1375 usleep_range(300, 1000);
1376}
1377
Adrian Hunterc9faff62013-06-13 11:50:26 +03001378static void sdhci_pci_hw_reset(struct sdhci_host *host)
1379{
1380 struct sdhci_pci_slot *slot = sdhci_priv(host);
1381
1382 if (slot->hw_reset)
1383 slot->hw_reset(host);
1384}
1385
Adrian Huntere1bfad62015-02-06 14:13:00 +02001386static int sdhci_pci_select_drive_strength(struct sdhci_host *host,
1387 struct mmc_card *card,
1388 unsigned int max_dtr, int host_drv,
1389 int card_drv, int *drv_type)
1390{
1391 struct sdhci_pci_slot *slot = sdhci_priv(host);
1392
1393 if (!slot->select_drive_strength)
1394 return 0;
1395
1396 return slot->select_drive_strength(host, card, max_dtr, host_drv,
1397 card_drv, drv_type);
1398}
1399
Lars-Peter Clausenc9155682013-03-13 19:26:05 +01001400static const struct sdhci_ops sdhci_pci_ops = {
Russell King17710592014-04-25 12:58:55 +01001401 .set_clock = sdhci_set_clock,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001402 .enable_dma = sdhci_pci_enable_dma,
Russell King2317f562014-04-25 12:57:07 +01001403 .set_bus_width = sdhci_pci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +01001404 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +01001405 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunter0f201652011-08-29 16:42:13 +03001406 .hw_reset = sdhci_pci_hw_reset,
Adrian Huntere1bfad62015-02-06 14:13:00 +02001407 .select_drive_strength = sdhci_pci_select_drive_strength,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001408};
1409
1410/*****************************************************************************\
1411 * *
1412 * Suspend/resume *
1413 * *
1414\*****************************************************************************/
1415
1416#ifdef CONFIG_PM
1417
Manuel Lauss29495aa2011-11-03 11:09:45 +01001418static int sdhci_pci_suspend(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001419{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001420 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001421 struct sdhci_pci_chip *chip;
1422 struct sdhci_pci_slot *slot;
Daniel Drake5f619702010-11-04 22:20:39 +00001423 mmc_pm_flag_t slot_pm_flags;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001424 mmc_pm_flag_t pm_flags = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001425 int i, ret;
1426
1427 chip = pci_get_drvdata(pdev);
1428 if (!chip)
1429 return 0;
1430
Ameya Palandeb177bc92011-04-05 21:13:13 +03001431 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001432 slot = chip->slots[i];
1433 if (!slot)
1434 continue;
1435
Manuel Lauss29495aa2011-11-03 11:09:45 +01001436 ret = sdhci_suspend_host(slot->host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001437
Axel Linb678b912011-12-03 15:28:05 +08001438 if (ret)
1439 goto err_pci_suspend;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001440
Daniel Drake5f619702010-11-04 22:20:39 +00001441 slot_pm_flags = slot->host->mmc->pm_flags;
1442 if (slot_pm_flags & MMC_PM_WAKE_SDIO_IRQ)
1443 sdhci_enable_irq_wakeups(slot->host);
1444
1445 pm_flags |= slot_pm_flags;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001446 }
1447
Pierre Ossman44894282008-04-04 19:36:59 +02001448 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001449 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001450 if (ret)
1451 goto err_pci_suspend;
Pierre Ossman44894282008-04-04 19:36:59 +02001452 }
1453
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001454 if (pm_flags & MMC_PM_KEEP_POWER) {
Chuanxiao.Dong6b91f2d2014-07-15 17:28:05 +08001455 if (pm_flags & MMC_PM_WAKE_SDIO_IRQ)
1456 device_init_wakeup(dev, true);
1457 else
1458 device_init_wakeup(dev, false);
1459 } else
1460 device_init_wakeup(dev, false);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001461
1462 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001463
1464err_pci_suspend:
1465 while (--i >= 0)
1466 sdhci_resume_host(chip->slots[i]->host);
1467 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001468}
1469
Manuel Lauss29495aa2011-11-03 11:09:45 +01001470static int sdhci_pci_resume(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001471{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001472 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001473 struct sdhci_pci_chip *chip;
1474 struct sdhci_pci_slot *slot;
1475 int i, ret;
1476
1477 chip = pci_get_drvdata(pdev);
1478 if (!chip)
1479 return 0;
1480
Pierre Ossman45211e22008-03-24 13:09:09 +01001481 if (chip->fixes && chip->fixes->resume) {
1482 ret = chip->fixes->resume(chip);
1483 if (ret)
1484 return ret;
1485 }
1486
Ameya Palandeb177bc92011-04-05 21:13:13 +03001487 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001488 slot = chip->slots[i];
1489 if (!slot)
1490 continue;
1491
1492 ret = sdhci_resume_host(slot->host);
1493 if (ret)
1494 return ret;
1495 }
1496
1497 return 0;
1498}
1499
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001500static int sdhci_pci_runtime_suspend(struct device *dev)
1501{
Geliang Tang923a2312015-12-27 18:46:00 +08001502 struct pci_dev *pdev = to_pci_dev(dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001503 struct sdhci_pci_chip *chip;
1504 struct sdhci_pci_slot *slot;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001505 int i, ret;
1506
1507 chip = pci_get_drvdata(pdev);
1508 if (!chip)
1509 return 0;
1510
1511 for (i = 0; i < chip->num_slots; i++) {
1512 slot = chip->slots[i];
1513 if (!slot)
1514 continue;
1515
1516 ret = sdhci_runtime_suspend_host(slot->host);
1517
Axel Linb678b912011-12-03 15:28:05 +08001518 if (ret)
1519 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001520 }
1521
1522 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001523 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001524 if (ret)
1525 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001526 }
1527
1528 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001529
1530err_pci_runtime_suspend:
1531 while (--i >= 0)
1532 sdhci_runtime_resume_host(chip->slots[i]->host);
1533 return ret;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001534}
1535
1536static int sdhci_pci_runtime_resume(struct device *dev)
1537{
Geliang Tang923a2312015-12-27 18:46:00 +08001538 struct pci_dev *pdev = to_pci_dev(dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001539 struct sdhci_pci_chip *chip;
1540 struct sdhci_pci_slot *slot;
1541 int i, ret;
1542
1543 chip = pci_get_drvdata(pdev);
1544 if (!chip)
1545 return 0;
1546
1547 if (chip->fixes && chip->fixes->resume) {
1548 ret = chip->fixes->resume(chip);
1549 if (ret)
1550 return ret;
1551 }
1552
1553 for (i = 0; i < chip->num_slots; i++) {
1554 slot = chip->slots[i];
1555 if (!slot)
1556 continue;
1557
1558 ret = sdhci_runtime_resume_host(slot->host);
1559 if (ret)
1560 return ret;
1561 }
1562
1563 return 0;
1564}
1565
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01001566#else /* CONFIG_PM */
1567
1568#define sdhci_pci_suspend NULL
1569#define sdhci_pci_resume NULL
1570
1571#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001572
1573static const struct dev_pm_ops sdhci_pci_pm_ops = {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001574 .suspend = sdhci_pci_suspend,
1575 .resume = sdhci_pci_resume,
Peter Griffinf3a92b12014-08-12 17:14:28 +01001576 SET_RUNTIME_PM_OPS(sdhci_pci_runtime_suspend,
Ulf Hansson106276b2014-12-10 16:49:23 +01001577 sdhci_pci_runtime_resume, NULL)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001578};
1579
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001580/*****************************************************************************\
1581 * *
1582 * Device probing/removal *
1583 * *
1584\*****************************************************************************/
1585
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001586static struct sdhci_pci_slot *sdhci_pci_probe_slot(
Adrian Hunter52c506f2011-12-27 15:48:43 +02001587 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar,
1588 int slotno)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001589{
1590 struct sdhci_pci_slot *slot;
1591 struct sdhci_host *host;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001592 int ret, bar = first_bar + slotno;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001593
1594 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
1595 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
1596 return ERR_PTR(-ENODEV);
1597 }
1598
Adrian Hunter90b3e6c2012-10-18 09:54:31 +03001599 if (pci_resource_len(pdev, bar) < 0x100) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001600 dev_err(&pdev->dev, "Invalid iomem size. You may "
1601 "experience problems.\n");
1602 }
1603
1604 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1605 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
1606 return ERR_PTR(-ENODEV);
1607 }
1608
1609 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
1610 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
1611 return ERR_PTR(-ENODEV);
1612 }
1613
1614 host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot));
1615 if (IS_ERR(host)) {
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001616 dev_err(&pdev->dev, "cannot allocate host\n");
Julia Lawalldc0fd7b2010-05-26 14:42:11 -07001617 return ERR_CAST(host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001618 }
1619
1620 slot = sdhci_priv(host);
1621
1622 slot->chip = chip;
1623 slot->host = host;
1624 slot->pci_bar = bar;
Adrian Hunter0f201652011-08-29 16:42:13 +03001625 slot->rst_n_gpio = -EINVAL;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001626 slot->cd_gpio = -EINVAL;
Adrian Hunterff59c522014-09-24 10:27:31 +03001627 slot->cd_idx = -1;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001628
Adrian Hunter52c506f2011-12-27 15:48:43 +02001629 /* Retrieve platform data if there is any */
1630 if (*sdhci_pci_get_data)
1631 slot->data = sdhci_pci_get_data(pdev, slotno);
1632
1633 if (slot->data) {
1634 if (slot->data->setup) {
1635 ret = slot->data->setup(slot->data);
1636 if (ret) {
1637 dev_err(&pdev->dev, "platform setup failed\n");
1638 goto free;
1639 }
1640 }
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001641 slot->rst_n_gpio = slot->data->rst_n_gpio;
1642 slot->cd_gpio = slot->data->cd_gpio;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001643 }
1644
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001645 host->hw_name = "PCI";
1646 host->ops = &sdhci_pci_ops;
1647 host->quirks = chip->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001648 host->quirks2 = chip->quirks2;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001649
1650 host->irq = pdev->irq;
1651
1652 ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc));
1653 if (ret) {
1654 dev_err(&pdev->dev, "cannot request region\n");
Adrian Hunter52c506f2011-12-27 15:48:43 +02001655 goto cleanup;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001656 }
1657
Arjan van de Ven092f82e2008-09-28 16:15:56 -07001658 host->ioaddr = pci_ioremap_bar(pdev, bar);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001659 if (!host->ioaddr) {
1660 dev_err(&pdev->dev, "failed to remap registers\n");
Chris Ball9fdcdbb2011-03-29 00:46:12 -04001661 ret = -ENOMEM;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001662 goto release;
1663 }
1664
Pierre Ossman44894282008-04-04 19:36:59 +02001665 if (chip->fixes && chip->fixes->probe_slot) {
1666 ret = chip->fixes->probe_slot(slot);
1667 if (ret)
1668 goto unmap;
1669 }
1670
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001671 if (gpio_is_valid(slot->rst_n_gpio)) {
1672 if (!gpio_request(slot->rst_n_gpio, "eMMC_reset")) {
1673 gpio_direction_output(slot->rst_n_gpio, 1);
1674 slot->host->mmc->caps |= MMC_CAP_HW_RESET;
Adrian Hunterc9faff62013-06-13 11:50:26 +03001675 slot->hw_reset = sdhci_pci_gpio_hw_reset;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001676 } else {
1677 dev_warn(&pdev->dev, "failed to request rst_n_gpio\n");
1678 slot->rst_n_gpio = -EINVAL;
1679 }
1680 }
1681
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001682 host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ;
Aaron Lueed222a2013-03-05 11:24:52 +08001683 host->mmc->slotno = slotno;
Adrian Huntera08b17b2013-04-15 11:27:25 -04001684 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001685
Adrian Hunterff59c522014-09-24 10:27:31 +03001686 if (slot->cd_idx >= 0 &&
1687 mmc_gpiod_request_cd(host->mmc, slot->cd_con_id, slot->cd_idx,
1688 slot->cd_override_level, 0, NULL)) {
1689 dev_warn(&pdev->dev, "failed to setup card detect gpio\n");
1690 slot->cd_idx = -1;
1691 }
1692
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001693 ret = sdhci_add_host(host);
1694 if (ret)
Pierre Ossman44894282008-04-04 19:36:59 +02001695 goto remove;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001696
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001697 sdhci_pci_add_own_cd(slot);
1698
Adrian Hunter77a01222014-01-13 09:49:16 +02001699 /*
1700 * Check if the chip needs a separate GPIO for card detect to wake up
1701 * from runtime suspend. If it is not there, don't allow runtime PM.
1702 * Note sdhci_pci_add_own_cd() sets slot->cd_gpio to -EINVAL on failure.
1703 */
Adrian Hunter945be382014-01-21 09:52:39 +02001704 if (chip->fixes && chip->fixes->own_cd_for_runtime_pm &&
Adrian Hunterff59c522014-09-24 10:27:31 +03001705 !gpio_is_valid(slot->cd_gpio) && slot->cd_idx < 0)
Adrian Hunter77a01222014-01-13 09:49:16 +02001706 chip->allow_runtime_pm = false;
1707
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001708 return slot;
1709
Pierre Ossman44894282008-04-04 19:36:59 +02001710remove:
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001711 if (gpio_is_valid(slot->rst_n_gpio))
1712 gpio_free(slot->rst_n_gpio);
1713
Pierre Ossman44894282008-04-04 19:36:59 +02001714 if (chip->fixes && chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001715 chip->fixes->remove_slot(slot, 0);
Pierre Ossman44894282008-04-04 19:36:59 +02001716
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001717unmap:
1718 iounmap(host->ioaddr);
1719
1720release:
1721 pci_release_region(pdev, bar);
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001722
Adrian Hunter52c506f2011-12-27 15:48:43 +02001723cleanup:
1724 if (slot->data && slot->data->cleanup)
1725 slot->data->cleanup(slot->data);
1726
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001727free:
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001728 sdhci_free_host(host);
1729
1730 return ERR_PTR(ret);
1731}
1732
1733static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
1734{
Pierre Ossman1e728592008-04-16 19:13:13 +02001735 int dead;
1736 u32 scratch;
1737
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001738 sdhci_pci_remove_own_cd(slot);
1739
Pierre Ossman1e728592008-04-16 19:13:13 +02001740 dead = 0;
1741 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
1742 if (scratch == (u32)-1)
1743 dead = 1;
1744
1745 sdhci_remove_host(slot->host, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001746
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001747 if (gpio_is_valid(slot->rst_n_gpio))
1748 gpio_free(slot->rst_n_gpio);
1749
Pierre Ossman44894282008-04-04 19:36:59 +02001750 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001751 slot->chip->fixes->remove_slot(slot, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001752
Adrian Hunter52c506f2011-12-27 15:48:43 +02001753 if (slot->data && slot->data->cleanup)
1754 slot->data->cleanup(slot->data);
1755
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001756 pci_release_region(slot->chip->pdev, slot->pci_bar);
Pierre Ossman44894282008-04-04 19:36:59 +02001757
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001758 sdhci_free_host(slot->host);
1759}
1760
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001761static void sdhci_pci_runtime_pm_allow(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001762{
1763 pm_runtime_put_noidle(dev);
1764 pm_runtime_allow(dev);
1765 pm_runtime_set_autosuspend_delay(dev, 50);
1766 pm_runtime_use_autosuspend(dev);
1767 pm_suspend_ignore_children(dev, 1);
1768}
1769
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001770static void sdhci_pci_runtime_pm_forbid(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001771{
1772 pm_runtime_forbid(dev);
1773 pm_runtime_get_noresume(dev);
1774}
1775
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001776static int sdhci_pci_probe(struct pci_dev *pdev,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001777 const struct pci_device_id *ent)
1778{
1779 struct sdhci_pci_chip *chip;
1780 struct sdhci_pci_slot *slot;
1781
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001782 u8 slots, first_bar;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001783 int ret, i;
1784
1785 BUG_ON(pdev == NULL);
1786 BUG_ON(ent == NULL);
1787
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001788 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001789 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001790
1791 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
1792 if (ret)
1793 return ret;
1794
1795 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
1796 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
1797 if (slots == 0)
1798 return -ENODEV;
1799
1800 BUG_ON(slots > MAX_SLOTS);
1801
1802 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
1803 if (ret)
1804 return ret;
1805
1806 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
1807
1808 if (first_bar > 5) {
1809 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
1810 return -ENODEV;
1811 }
1812
1813 ret = pci_enable_device(pdev);
1814 if (ret)
1815 return ret;
1816
1817 chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
1818 if (!chip) {
1819 ret = -ENOMEM;
1820 goto err;
1821 }
1822
1823 chip->pdev = pdev;
Ameya Palandeb177bc92011-04-05 21:13:13 +03001824 chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001825 if (chip->fixes) {
Pierre Ossman22606402008-03-23 19:33:23 +01001826 chip->quirks = chip->fixes->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001827 chip->quirks2 = chip->fixes->quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001828 chip->allow_runtime_pm = chip->fixes->allow_runtime_pm;
1829 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001830 chip->num_slots = slots;
1831
1832 pci_set_drvdata(pdev, chip);
1833
Pierre Ossman22606402008-03-23 19:33:23 +01001834 if (chip->fixes && chip->fixes->probe) {
1835 ret = chip->fixes->probe(chip);
1836 if (ret)
1837 goto free;
1838 }
1839
Alan Cox225d85f2010-10-04 15:24:21 +01001840 slots = chip->num_slots; /* Quirk may have changed this */
1841
Ameya Palandeb177bc92011-04-05 21:13:13 +03001842 for (i = 0; i < slots; i++) {
Adrian Hunter52c506f2011-12-27 15:48:43 +02001843 slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001844 if (IS_ERR(slot)) {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001845 for (i--; i >= 0; i--)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001846 sdhci_pci_remove_slot(chip->slots[i]);
1847 ret = PTR_ERR(slot);
1848 goto free;
1849 }
1850
1851 chip->slots[i] = slot;
1852 }
1853
Adrian Hunterc43fd772011-10-17 10:52:44 +03001854 if (chip->allow_runtime_pm)
1855 sdhci_pci_runtime_pm_allow(&pdev->dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001856
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001857 return 0;
1858
1859free:
1860 pci_set_drvdata(pdev, NULL);
1861 kfree(chip);
1862
1863err:
1864 pci_disable_device(pdev);
1865 return ret;
1866}
1867
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001868static void sdhci_pci_remove(struct pci_dev *pdev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001869{
1870 int i;
1871 struct sdhci_pci_chip *chip;
1872
1873 chip = pci_get_drvdata(pdev);
1874
1875 if (chip) {
Adrian Hunterc43fd772011-10-17 10:52:44 +03001876 if (chip->allow_runtime_pm)
1877 sdhci_pci_runtime_pm_forbid(&pdev->dev);
1878
Ameya Palandeb177bc92011-04-05 21:13:13 +03001879 for (i = 0; i < chip->num_slots; i++)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001880 sdhci_pci_remove_slot(chip->slots[i]);
1881
1882 pci_set_drvdata(pdev, NULL);
1883 kfree(chip);
1884 }
1885
1886 pci_disable_device(pdev);
1887}
1888
1889static struct pci_driver sdhci_driver = {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001890 .name = "sdhci-pci",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001891 .id_table = pci_ids,
Ameya Palandeb177bc92011-04-05 21:13:13 +03001892 .probe = sdhci_pci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001893 .remove = sdhci_pci_remove,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001894 .driver = {
1895 .pm = &sdhci_pci_pm_ops
1896 },
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001897};
1898
Sachin Kamatacc69642012-08-27 11:57:02 +05301899module_pci_driver(sdhci_driver);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001900
Pierre Ossman32710e82009-04-08 20:14:54 +02001901MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001902MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1903MODULE_LICENSE("GPL");