blob: d01aa610391fe3a2dcb8d4ab24df6b15f502b3ea [file] [log] [blame]
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001/* linux/drivers/mmc/host/sdhci-pci.c - SDHCI on PCI bus interface
2 *
3 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or (at
8 * your option) any later version.
9 *
10 * Thanks to the following companies for their support:
11 *
12 * - JMicron (hardware and technical support)
13 */
14
15#include <linux/delay.h>
16#include <linux/highmem.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040017#include <linux/module.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010018#include <linux/pci.h>
19#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Maxim Levitskyccc92c22010-08-10 18:01:42 -070021#include <linux/device.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010022#include <linux/mmc/host.h>
Ameya Palandeb177bc92011-04-05 21:13:13 +030023#include <linux/scatterlist.h>
24#include <linux/io.h>
Adrian Hunter0f201652011-08-29 16:42:13 +030025#include <linux/gpio.h>
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030026#include <linux/pm_runtime.h>
Adrian Hunter52c506f2011-12-27 15:48:43 +020027#include <linux/mmc/sdhci-pci-data.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010028
29#include "sdhci.h"
30
31/*
Alexander Stein296e0b02012-03-14 08:38:58 +010032 * PCI device IDs
33 */
34#define PCI_DEVICE_ID_INTEL_PCH_SDIO0 0x8809
35#define PCI_DEVICE_ID_INTEL_PCH_SDIO1 0x880a
36
37/*
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010038 * PCI registers
39 */
40
41#define PCI_SDHCI_IFPIO 0x00
42#define PCI_SDHCI_IFDMA 0x01
43#define PCI_SDHCI_IFVENDOR 0x02
44
45#define PCI_SLOT_INFO 0x40 /* 8 bits */
46#define PCI_SLOT_INFO_SLOTS(x) ((x >> 4) & 7)
47#define PCI_SLOT_INFO_FIRST_BAR_MASK 0x07
48
49#define MAX_SLOTS 8
50
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010051struct sdhci_pci_chip;
Pierre Ossman44894282008-04-04 19:36:59 +020052struct sdhci_pci_slot;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010053
Pierre Ossman22606402008-03-23 19:33:23 +010054struct sdhci_pci_fixes {
55 unsigned int quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +020056 unsigned int quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +030057 bool allow_runtime_pm;
Pierre Ossman22606402008-03-23 19:33:23 +010058
Ameya Palandeb177bc92011-04-05 21:13:13 +030059 int (*probe) (struct sdhci_pci_chip *);
Pierre Ossman45211e22008-03-24 13:09:09 +010060
Ameya Palandeb177bc92011-04-05 21:13:13 +030061 int (*probe_slot) (struct sdhci_pci_slot *);
62 void (*remove_slot) (struct sdhci_pci_slot *, int);
Pierre Ossman44894282008-04-04 19:36:59 +020063
Manuel Lauss29495aa2011-11-03 11:09:45 +010064 int (*suspend) (struct sdhci_pci_chip *);
Ameya Palandeb177bc92011-04-05 21:13:13 +030065 int (*resume) (struct sdhci_pci_chip *);
Pierre Ossman22606402008-03-23 19:33:23 +010066};
67
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010068struct sdhci_pci_slot {
69 struct sdhci_pci_chip *chip;
70 struct sdhci_host *host;
Adrian Hunter52c506f2011-12-27 15:48:43 +020071 struct sdhci_pci_data *data;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010072
73 int pci_bar;
Adrian Hunter0f201652011-08-29 16:42:13 +030074 int rst_n_gpio;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030075 int cd_gpio;
76 int cd_irq;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010077};
78
79struct sdhci_pci_chip {
80 struct pci_dev *pdev;
Pierre Ossman22606402008-03-23 19:33:23 +010081
82 unsigned int quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +020083 unsigned int quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +030084 bool allow_runtime_pm;
Pierre Ossman22606402008-03-23 19:33:23 +010085 const struct sdhci_pci_fixes *fixes;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010086
87 int num_slots; /* Slots on controller */
88 struct sdhci_pci_slot *slots[MAX_SLOTS]; /* Pointers to host slots */
89};
90
Pierre Ossman22606402008-03-23 19:33:23 +010091
92/*****************************************************************************\
93 * *
94 * Hardware specific quirk handling *
95 * *
96\*****************************************************************************/
97
98static int ricoh_probe(struct sdhci_pci_chip *chip)
99{
Chris Ballc99436f2009-09-22 16:45:22 -0700100 if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
101 chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
Pierre Ossman22606402008-03-23 19:33:23 +0100102 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700103 return 0;
104}
Pierre Ossman22606402008-03-23 19:33:23 +0100105
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700106static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot)
107{
108 slot->host->caps =
109 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT)
110 & SDHCI_TIMEOUT_CLK_MASK) |
111
112 ((0x21 << SDHCI_CLOCK_BASE_SHIFT)
113 & SDHCI_CLOCK_BASE_MASK) |
114
115 SDHCI_TIMEOUT_CLK_UNIT |
116 SDHCI_CAN_VDD_330 |
117 SDHCI_CAN_DO_SDMA;
118 return 0;
119}
120
121static int ricoh_mmc_resume(struct sdhci_pci_chip *chip)
122{
123 /* Apply a delay to allow controller to settle */
124 /* Otherwise it becomes confused if card state changed
125 during suspend */
126 msleep(500);
Pierre Ossman22606402008-03-23 19:33:23 +0100127 return 0;
128}
129
130static const struct sdhci_pci_fixes sdhci_ricoh = {
131 .probe = ricoh_probe,
Vasily Khoruzhick84938292010-03-05 13:43:46 -0800132 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
133 SDHCI_QUIRK_FORCE_DMA |
134 SDHCI_QUIRK_CLOCK_BEFORE_RESET,
Pierre Ossman22606402008-03-23 19:33:23 +0100135};
136
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700137static const struct sdhci_pci_fixes sdhci_ricoh_mmc = {
138 .probe_slot = ricoh_mmc_probe_slot,
139 .resume = ricoh_mmc_resume,
140 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
141 SDHCI_QUIRK_CLOCK_BEFORE_RESET |
142 SDHCI_QUIRK_NO_CARD_NO_RESET |
143 SDHCI_QUIRK_MISSING_CAPS
144};
145
Pierre Ossman22606402008-03-23 19:33:23 +0100146static const struct sdhci_pci_fixes sdhci_ene_712 = {
147 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
148 SDHCI_QUIRK_BROKEN_DMA,
149};
150
151static const struct sdhci_pci_fixes sdhci_ene_714 = {
152 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
153 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS |
154 SDHCI_QUIRK_BROKEN_DMA,
155};
156
157static const struct sdhci_pci_fixes sdhci_cafe = {
158 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
Andres Salomona0874892009-03-02 21:48:20 +0100159 SDHCI_QUIRK_NO_BUSY_IRQ |
Daniel Drake55fc05b2012-07-03 23:13:39 +0100160 SDHCI_QUIRK_BROKEN_CARD_DETECTION |
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200161 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
Pierre Ossman22606402008-03-23 19:33:23 +0100162};
163
Major Lee68077b02011-06-29 14:23:46 +0300164static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot)
165{
166 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
167 return 0;
168}
169
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100170/*
171 * ADMA operation is disabled for Moorestown platform due to
172 * hardware bugs.
173 */
Jacob Pan35ac6f02010-11-09 13:57:29 +0000174static int mrst_hc_probe(struct sdhci_pci_chip *chip)
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100175{
176 /*
Jacob Pan35ac6f02010-11-09 13:57:29 +0000177 * slots number is fixed here for MRST as SDIO3/5 are never used and
178 * have hardware bugs.
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100179 */
180 chip->num_slots = 1;
181 return 0;
182}
183
Alexander Stein296e0b02012-03-14 08:38:58 +0100184static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
185{
186 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
187 return 0;
188}
189
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300190#ifdef CONFIG_PM_RUNTIME
191
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200192static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300193{
194 struct sdhci_pci_slot *slot = dev_id;
195 struct sdhci_host *host = slot->host;
196
197 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
198 return IRQ_HANDLED;
199}
200
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200201static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300202{
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200203 int err, irq, gpio = slot->cd_gpio;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300204
205 slot->cd_gpio = -EINVAL;
206 slot->cd_irq = -EINVAL;
207
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200208 if (!gpio_is_valid(gpio))
209 return;
210
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300211 err = gpio_request(gpio, "sd_cd");
212 if (err < 0)
213 goto out;
214
215 err = gpio_direction_input(gpio);
216 if (err < 0)
217 goto out_free;
218
219 irq = gpio_to_irq(gpio);
220 if (irq < 0)
221 goto out_free;
222
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200223 err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING |
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300224 IRQF_TRIGGER_FALLING, "sd_cd", slot);
225 if (err)
226 goto out_free;
227
228 slot->cd_gpio = gpio;
229 slot->cd_irq = irq;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300230
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200231 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300232
233out_free:
234 gpio_free(gpio);
235out:
236 dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300237}
238
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200239static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300240{
241 if (slot->cd_irq >= 0)
242 free_irq(slot->cd_irq, slot);
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200243 if (gpio_is_valid(slot->cd_gpio))
244 gpio_free(slot->cd_gpio);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300245}
246
247#else
248
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200249static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
250{
251}
252
253static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
254{
255}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300256
257#endif
258
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300259static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
260{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300261 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
Adrian Hunterda721cf2012-02-07 14:48:53 +0200262 slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC |
263 MMC_CAP2_HC_ERASE_SZ;
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300264 return 0;
265}
266
Adrian Hunter93933502011-12-27 15:48:47 +0200267static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot)
268{
Adrian Hunter012e4672012-01-30 14:27:18 +0200269 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
Adrian Hunter93933502011-12-27 15:48:47 +0200270 return 0;
271}
272
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100273static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
274 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Major Lee68077b02011-06-29 14:23:46 +0300275 .probe_slot = mrst_hc_probe_slot,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100276};
277
Jacob Pan35ac6f02010-11-09 13:57:29 +0000278static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100279 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000280 .probe = mrst_hc_probe,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100281};
282
Xiaochen Shen29229052010-10-04 15:24:52 +0100283static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
284 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300285 .allow_runtime_pm = true,
Xiaochen Shen29229052010-10-04 15:24:52 +0100286};
287
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300288static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = {
Xiaochen Shen29229052010-10-04 15:24:52 +0100289 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterf3c55a72012-02-07 14:48:55 +0200290 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300291 .allow_runtime_pm = true,
Adrian Hunter93933502011-12-27 15:48:47 +0200292 .probe_slot = mfd_sdio_probe_slot,
Xiaochen Shen29229052010-10-04 15:24:52 +0100293};
294
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300295static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = {
296 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300297 .allow_runtime_pm = true,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300298 .probe_slot = mfd_emmc_probe_slot,
299};
300
Alexander Stein296e0b02012-03-14 08:38:58 +0100301static const struct sdhci_pci_fixes sdhci_intel_pch_sdio = {
302 .quirks = SDHCI_QUIRK_BROKEN_ADMA,
303 .probe_slot = pch_hc_probe_slot,
304};
305
Jennifer Li26daa1e2010-11-17 23:01:59 -0500306/* O2Micro extra registers */
307#define O2_SD_LOCK_WP 0xD3
308#define O2_SD_MULTI_VCC3V 0xEE
309#define O2_SD_CLKREQ 0xEC
310#define O2_SD_CAPS 0xE0
311#define O2_SD_ADMA1 0xE2
312#define O2_SD_ADMA2 0xE7
313#define O2_SD_INF_MOD 0xF1
314
315static int o2_probe(struct sdhci_pci_chip *chip)
316{
317 int ret;
318 u8 scratch;
319
320 switch (chip->pdev->device) {
321 case PCI_DEVICE_ID_O2_8220:
322 case PCI_DEVICE_ID_O2_8221:
323 case PCI_DEVICE_ID_O2_8320:
324 case PCI_DEVICE_ID_O2_8321:
325 /* This extra setup is required due to broken ADMA. */
326 ret = pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch);
327 if (ret)
328 return ret;
329 scratch &= 0x7f;
330 pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
331
332 /* Set Multi 3 to VCC3V# */
333 pci_write_config_byte(chip->pdev, O2_SD_MULTI_VCC3V, 0x08);
334
335 /* Disable CLK_REQ# support after media DET */
336 ret = pci_read_config_byte(chip->pdev, O2_SD_CLKREQ, &scratch);
337 if (ret)
338 return ret;
339 scratch |= 0x20;
340 pci_write_config_byte(chip->pdev, O2_SD_CLKREQ, scratch);
341
342 /* Choose capabilities, enable SDMA. We have to write 0x01
343 * to the capabilities register first to unlock it.
344 */
345 ret = pci_read_config_byte(chip->pdev, O2_SD_CAPS, &scratch);
346 if (ret)
347 return ret;
348 scratch |= 0x01;
349 pci_write_config_byte(chip->pdev, O2_SD_CAPS, scratch);
350 pci_write_config_byte(chip->pdev, O2_SD_CAPS, 0x73);
351
352 /* Disable ADMA1/2 */
353 pci_write_config_byte(chip->pdev, O2_SD_ADMA1, 0x39);
354 pci_write_config_byte(chip->pdev, O2_SD_ADMA2, 0x08);
355
356 /* Disable the infinite transfer mode */
357 ret = pci_read_config_byte(chip->pdev, O2_SD_INF_MOD, &scratch);
358 if (ret)
359 return ret;
360 scratch |= 0x08;
361 pci_write_config_byte(chip->pdev, O2_SD_INF_MOD, scratch);
362
363 /* Lock WP */
364 ret = pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch);
365 if (ret)
366 return ret;
367 scratch |= 0x80;
368 pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
369 }
370
371 return 0;
372}
373
Pierre Ossman45211e22008-03-24 13:09:09 +0100374static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
375{
376 u8 scratch;
377 int ret;
378
379 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
380 if (ret)
381 return ret;
382
383 /*
384 * Turn PMOS on [bit 0], set over current detection to 2.4 V
385 * [bit 1:2] and enable over current debouncing [bit 6].
386 */
387 if (on)
388 scratch |= 0x47;
389 else
390 scratch &= ~0x47;
391
392 ret = pci_write_config_byte(chip->pdev, 0xAE, scratch);
393 if (ret)
394 return ret;
395
396 return 0;
397}
398
399static int jmicron_probe(struct sdhci_pci_chip *chip)
400{
401 int ret;
Takashi Iwai8f230f42010-12-08 10:04:30 +0100402 u16 mmcdev = 0;
Pierre Ossman45211e22008-03-24 13:09:09 +0100403
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200404 if (chip->pdev->revision == 0) {
405 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
406 SDHCI_QUIRK_32BIT_DMA_SIZE |
Pierre Ossman2134a922008-06-28 18:28:51 +0200407 SDHCI_QUIRK_32BIT_ADMA_SIZE |
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200408 SDHCI_QUIRK_RESET_AFTER_REQUEST |
Pierre Ossman86a6a872009-02-02 21:13:49 +0100409 SDHCI_QUIRK_BROKEN_SMALL_PIO;
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200410 }
411
Pierre Ossman45211e22008-03-24 13:09:09 +0100412 /*
Pierre Ossman44894282008-04-04 19:36:59 +0200413 * JMicron chips can have two interfaces to the same hardware
414 * in order to work around limitations in Microsoft's driver.
415 * We need to make sure we only bind to one of them.
416 *
417 * This code assumes two things:
418 *
419 * 1. The PCI code adds subfunctions in order.
420 *
421 * 2. The MMC interface has a lower subfunction number
422 * than the SD interface.
423 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100424 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD)
425 mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC;
426 else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD)
427 mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD;
428
429 if (mmcdev) {
Pierre Ossman44894282008-04-04 19:36:59 +0200430 struct pci_dev *sd_dev;
431
432 sd_dev = NULL;
433 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
Takashi Iwai8f230f42010-12-08 10:04:30 +0100434 mmcdev, sd_dev)) != NULL) {
Pierre Ossman44894282008-04-04 19:36:59 +0200435 if ((PCI_SLOT(chip->pdev->devfn) ==
436 PCI_SLOT(sd_dev->devfn)) &&
437 (chip->pdev->bus == sd_dev->bus))
438 break;
439 }
440
441 if (sd_dev) {
442 pci_dev_put(sd_dev);
443 dev_info(&chip->pdev->dev, "Refusing to bind to "
444 "secondary interface.\n");
445 return -ENODEV;
446 }
447 }
448
449 /*
Pierre Ossman45211e22008-03-24 13:09:09 +0100450 * JMicron chips need a bit of a nudge to enable the power
451 * output pins.
452 */
453 ret = jmicron_pmos(chip, 1);
454 if (ret) {
455 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
456 return ret;
457 }
458
Takashi Iwai82b0e232011-04-21 20:26:38 +0200459 /* quirk for unsable RO-detection on JM388 chips */
460 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD ||
461 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
462 chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT;
463
Pierre Ossman45211e22008-03-24 13:09:09 +0100464 return 0;
465}
466
Pierre Ossman44894282008-04-04 19:36:59 +0200467static void jmicron_enable_mmc(struct sdhci_host *host, int on)
468{
469 u8 scratch;
470
471 scratch = readb(host->ioaddr + 0xC0);
472
473 if (on)
474 scratch |= 0x01;
475 else
476 scratch &= ~0x01;
477
478 writeb(scratch, host->ioaddr + 0xC0);
479}
480
481static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
482{
Pierre Ossman2134a922008-06-28 18:28:51 +0200483 if (slot->chip->pdev->revision == 0) {
484 u16 version;
485
486 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
487 version = (version & SDHCI_VENDOR_VER_MASK) >>
488 SDHCI_VENDOR_VER_SHIFT;
489
490 /*
491 * Older versions of the chip have lots of nasty glitches
492 * in the ADMA engine. It's best just to avoid it
493 * completely.
494 */
495 if (version < 0xAC)
496 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
497 }
498
Takashi Iwai8f230f42010-12-08 10:04:30 +0100499 /* JM388 MMC doesn't support 1.8V while SD supports it */
500 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
501 slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 |
502 MMC_VDD_29_30 | MMC_VDD_30_31 |
503 MMC_VDD_165_195; /* allow 1.8V */
504 slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 |
505 MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */
506 }
507
Pierre Ossman44894282008-04-04 19:36:59 +0200508 /*
509 * The secondary interface requires a bit set to get the
510 * interrupts.
511 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100512 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
513 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200514 jmicron_enable_mmc(slot->host, 1);
515
Takashi Iwaid75c1082010-12-16 17:54:14 +0100516 slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST;
517
Pierre Ossman44894282008-04-04 19:36:59 +0200518 return 0;
519}
520
Pierre Ossman1e728592008-04-16 19:13:13 +0200521static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
Pierre Ossman44894282008-04-04 19:36:59 +0200522{
Pierre Ossman1e728592008-04-16 19:13:13 +0200523 if (dead)
524 return;
525
Takashi Iwai8f230f42010-12-08 10:04:30 +0100526 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
527 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200528 jmicron_enable_mmc(slot->host, 0);
529}
530
Manuel Lauss29495aa2011-11-03 11:09:45 +0100531static int jmicron_suspend(struct sdhci_pci_chip *chip)
Pierre Ossman44894282008-04-04 19:36:59 +0200532{
533 int i;
534
Takashi Iwai8f230f42010-12-08 10:04:30 +0100535 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
536 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300537 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200538 jmicron_enable_mmc(chip->slots[i]->host, 0);
539 }
540
541 return 0;
542}
543
Pierre Ossman45211e22008-03-24 13:09:09 +0100544static int jmicron_resume(struct sdhci_pci_chip *chip)
545{
Pierre Ossman44894282008-04-04 19:36:59 +0200546 int ret, i;
547
Takashi Iwai8f230f42010-12-08 10:04:30 +0100548 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
549 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300550 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200551 jmicron_enable_mmc(chip->slots[i]->host, 1);
552 }
Pierre Ossman45211e22008-03-24 13:09:09 +0100553
554 ret = jmicron_pmos(chip, 1);
555 if (ret) {
556 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
557 return ret;
558 }
559
560 return 0;
561}
562
Jennifer Li26daa1e2010-11-17 23:01:59 -0500563static const struct sdhci_pci_fixes sdhci_o2 = {
564 .probe = o2_probe,
565};
566
Pierre Ossman22606402008-03-23 19:33:23 +0100567static const struct sdhci_pci_fixes sdhci_jmicron = {
Pierre Ossman45211e22008-03-24 13:09:09 +0100568 .probe = jmicron_probe,
569
Pierre Ossman44894282008-04-04 19:36:59 +0200570 .probe_slot = jmicron_probe_slot,
571 .remove_slot = jmicron_remove_slot,
572
573 .suspend = jmicron_suspend,
Pierre Ossman45211e22008-03-24 13:09:09 +0100574 .resume = jmicron_resume,
Pierre Ossman22606402008-03-23 19:33:23 +0100575};
576
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800577/* SysKonnect CardBus2SDIO extra registers */
578#define SYSKT_CTRL 0x200
579#define SYSKT_RDFIFO_STAT 0x204
580#define SYSKT_WRFIFO_STAT 0x208
581#define SYSKT_POWER_DATA 0x20c
582#define SYSKT_POWER_330 0xef
583#define SYSKT_POWER_300 0xf8
584#define SYSKT_POWER_184 0xcc
585#define SYSKT_POWER_CMD 0x20d
586#define SYSKT_POWER_START (1 << 7)
587#define SYSKT_POWER_STATUS 0x20e
588#define SYSKT_POWER_STATUS_OK (1 << 0)
589#define SYSKT_BOARD_REV 0x210
590#define SYSKT_CHIP_REV 0x211
591#define SYSKT_CONF_DATA 0x212
592#define SYSKT_CONF_DATA_1V8 (1 << 2)
593#define SYSKT_CONF_DATA_2V5 (1 << 1)
594#define SYSKT_CONF_DATA_3V3 (1 << 0)
595
596static int syskt_probe(struct sdhci_pci_chip *chip)
597{
598 if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
599 chip->pdev->class &= ~0x0000FF;
600 chip->pdev->class |= PCI_SDHCI_IFDMA;
601 }
602 return 0;
603}
604
605static int syskt_probe_slot(struct sdhci_pci_slot *slot)
606{
607 int tm, ps;
608
609 u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
610 u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
611 dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
612 "board rev %d.%d, chip rev %d.%d\n",
613 board_rev >> 4, board_rev & 0xf,
614 chip_rev >> 4, chip_rev & 0xf);
615 if (chip_rev >= 0x20)
616 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
617
618 writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
619 writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
620 udelay(50);
621 tm = 10; /* Wait max 1 ms */
622 do {
623 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
624 if (ps & SYSKT_POWER_STATUS_OK)
625 break;
626 udelay(100);
627 } while (--tm);
628 if (!tm) {
629 dev_err(&slot->chip->pdev->dev,
630 "power regulator never stabilized");
631 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
632 return -ENODEV;
633 }
634
635 return 0;
636}
637
638static const struct sdhci_pci_fixes sdhci_syskt = {
639 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
640 .probe = syskt_probe,
641 .probe_slot = syskt_probe_slot,
642};
643
Harald Welte557b0692009-06-18 16:53:38 +0200644static int via_probe(struct sdhci_pci_chip *chip)
645{
646 if (chip->pdev->revision == 0x10)
647 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
648
649 return 0;
650}
651
652static const struct sdhci_pci_fixes sdhci_via = {
653 .probe = via_probe,
654};
655
Bill Pemberton9647f842012-11-19 13:25:11 -0500656static const struct pci_device_id pci_ids[] = {
Pierre Ossman22606402008-03-23 19:33:23 +0100657 {
658 .vendor = PCI_VENDOR_ID_RICOH,
659 .device = PCI_DEVICE_ID_RICOH_R5C822,
660 .subvendor = PCI_ANY_ID,
661 .subdevice = PCI_ANY_ID,
662 .driver_data = (kernel_ulong_t)&sdhci_ricoh,
663 },
664
665 {
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700666 .vendor = PCI_VENDOR_ID_RICOH,
667 .device = 0x843,
668 .subvendor = PCI_ANY_ID,
669 .subdevice = PCI_ANY_ID,
670 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
671 },
672
673 {
Pablo Castillo568133e2010-08-10 18:02:01 -0700674 .vendor = PCI_VENDOR_ID_RICOH,
675 .device = 0xe822,
676 .subvendor = PCI_ANY_ID,
677 .subdevice = PCI_ANY_ID,
678 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
679 },
680
681 {
Manoj Iyer5fd11c02011-02-11 16:25:31 -0600682 .vendor = PCI_VENDOR_ID_RICOH,
683 .device = 0xe823,
684 .subvendor = PCI_ANY_ID,
685 .subdevice = PCI_ANY_ID,
686 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
687 },
688
689 {
Pierre Ossman22606402008-03-23 19:33:23 +0100690 .vendor = PCI_VENDOR_ID_ENE,
691 .device = PCI_DEVICE_ID_ENE_CB712_SD,
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_CB712_SD_2,
700 .subvendor = PCI_ANY_ID,
701 .subdevice = PCI_ANY_ID,
702 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
703 },
704
705 {
706 .vendor = PCI_VENDOR_ID_ENE,
707 .device = PCI_DEVICE_ID_ENE_CB714_SD,
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_ENE,
715 .device = PCI_DEVICE_ID_ENE_CB714_SD_2,
716 .subvendor = PCI_ANY_ID,
717 .subdevice = PCI_ANY_ID,
718 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
719 },
720
721 {
722 .vendor = PCI_VENDOR_ID_MARVELL,
David Woodhouse8c5eb882008-09-03 09:45:57 +0100723 .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD,
Pierre Ossman22606402008-03-23 19:33:23 +0100724 .subvendor = PCI_ANY_ID,
725 .subdevice = PCI_ANY_ID,
726 .driver_data = (kernel_ulong_t)&sdhci_cafe,
727 },
728
729 {
730 .vendor = PCI_VENDOR_ID_JMICRON,
731 .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD,
732 .subvendor = PCI_ANY_ID,
733 .subdevice = PCI_ANY_ID,
734 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
735 },
736
Pierre Ossman44894282008-04-04 19:36:59 +0200737 {
738 .vendor = PCI_VENDOR_ID_JMICRON,
739 .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC,
740 .subvendor = PCI_ANY_ID,
741 .subdevice = PCI_ANY_ID,
742 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
743 },
744
Harald Welte557b0692009-06-18 16:53:38 +0200745 {
Takashi Iwai8f230f42010-12-08 10:04:30 +0100746 .vendor = PCI_VENDOR_ID_JMICRON,
747 .device = PCI_DEVICE_ID_JMICRON_JMB388_SD,
748 .subvendor = PCI_ANY_ID,
749 .subdevice = PCI_ANY_ID,
750 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
751 },
752
753 {
754 .vendor = PCI_VENDOR_ID_JMICRON,
755 .device = PCI_DEVICE_ID_JMICRON_JMB388_ESD,
756 .subvendor = PCI_ANY_ID,
757 .subdevice = PCI_ANY_ID,
758 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
759 },
760
761 {
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800762 .vendor = PCI_VENDOR_ID_SYSKONNECT,
763 .device = 0x8000,
764 .subvendor = PCI_ANY_ID,
765 .subdevice = PCI_ANY_ID,
766 .driver_data = (kernel_ulong_t)&sdhci_syskt,
767 },
768
769 {
Harald Welte557b0692009-06-18 16:53:38 +0200770 .vendor = PCI_VENDOR_ID_VIA,
771 .device = 0x95d0,
772 .subvendor = PCI_ANY_ID,
773 .subdevice = PCI_ANY_ID,
774 .driver_data = (kernel_ulong_t)&sdhci_via,
775 },
776
Xiaochen Shen29229052010-10-04 15:24:52 +0100777 {
778 .vendor = PCI_VENDOR_ID_INTEL,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100779 .device = PCI_DEVICE_ID_INTEL_MRST_SD0,
780 .subvendor = PCI_ANY_ID,
781 .subdevice = PCI_ANY_ID,
782 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc0,
783 },
784
785 {
786 .vendor = PCI_VENDOR_ID_INTEL,
787 .device = PCI_DEVICE_ID_INTEL_MRST_SD1,
788 .subvendor = PCI_ANY_ID,
789 .subdevice = PCI_ANY_ID,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000790 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
791 },
792
793 {
794 .vendor = PCI_VENDOR_ID_INTEL,
795 .device = PCI_DEVICE_ID_INTEL_MRST_SD2,
796 .subvendor = PCI_ANY_ID,
797 .subdevice = PCI_ANY_ID,
798 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100799 },
800
801 {
802 .vendor = PCI_VENDOR_ID_INTEL,
Xiaochen Shen29229052010-10-04 15:24:52 +0100803 .device = PCI_DEVICE_ID_INTEL_MFD_SD,
804 .subvendor = PCI_ANY_ID,
805 .subdevice = PCI_ANY_ID,
806 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
807 },
808
809 {
810 .vendor = PCI_VENDOR_ID_INTEL,
811 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO1,
812 .subvendor = PCI_ANY_ID,
813 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300814 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100815 },
816
817 {
818 .vendor = PCI_VENDOR_ID_INTEL,
819 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO2,
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_EMMC0,
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_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100831 },
832
833 {
834 .vendor = PCI_VENDOR_ID_INTEL,
835 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC1,
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
Jennifer Li26daa1e2010-11-17 23:01:59 -0500841 {
Alexander Stein296e0b02012-03-14 08:38:58 +0100842 .vendor = PCI_VENDOR_ID_INTEL,
843 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO0,
844 .subvendor = PCI_ANY_ID,
845 .subdevice = PCI_ANY_ID,
846 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
847 },
848
849 {
850 .vendor = PCI_VENDOR_ID_INTEL,
851 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO1,
852 .subvendor = PCI_ANY_ID,
853 .subdevice = PCI_ANY_ID,
854 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
855 },
856
857 {
Jennifer Li26daa1e2010-11-17 23:01:59 -0500858 .vendor = PCI_VENDOR_ID_O2,
859 .device = PCI_DEVICE_ID_O2_8120,
860 .subvendor = PCI_ANY_ID,
861 .subdevice = PCI_ANY_ID,
862 .driver_data = (kernel_ulong_t)&sdhci_o2,
863 },
864
865 {
866 .vendor = PCI_VENDOR_ID_O2,
867 .device = PCI_DEVICE_ID_O2_8220,
868 .subvendor = PCI_ANY_ID,
869 .subdevice = PCI_ANY_ID,
870 .driver_data = (kernel_ulong_t)&sdhci_o2,
871 },
872
873 {
874 .vendor = PCI_VENDOR_ID_O2,
875 .device = PCI_DEVICE_ID_O2_8221,
876 .subvendor = PCI_ANY_ID,
877 .subdevice = PCI_ANY_ID,
878 .driver_data = (kernel_ulong_t)&sdhci_o2,
879 },
880
881 {
882 .vendor = PCI_VENDOR_ID_O2,
883 .device = PCI_DEVICE_ID_O2_8320,
884 .subvendor = PCI_ANY_ID,
885 .subdevice = PCI_ANY_ID,
886 .driver_data = (kernel_ulong_t)&sdhci_o2,
887 },
888
889 {
890 .vendor = PCI_VENDOR_ID_O2,
891 .device = PCI_DEVICE_ID_O2_8321,
892 .subvendor = PCI_ANY_ID,
893 .subdevice = PCI_ANY_ID,
894 .driver_data = (kernel_ulong_t)&sdhci_o2,
895 },
896
Pierre Ossman22606402008-03-23 19:33:23 +0100897 { /* Generic SD host controller */
898 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00)
899 },
900
901 { /* end: all zeroes */ },
902};
903
904MODULE_DEVICE_TABLE(pci, pci_ids);
905
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100906/*****************************************************************************\
907 * *
908 * SDHCI core callbacks *
909 * *
910\*****************************************************************************/
911
912static int sdhci_pci_enable_dma(struct sdhci_host *host)
913{
914 struct sdhci_pci_slot *slot;
915 struct pci_dev *pdev;
916 int ret;
917
918 slot = sdhci_priv(host);
919 pdev = slot->chip->pdev;
920
921 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
922 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -0700923 (host->flags & SDHCI_USE_SDMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100924 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
925 "doesn't fully claim to support it.\n");
926 }
927
Yang Hongyang284901a2009-04-06 19:01:15 -0700928 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100929 if (ret)
930 return ret;
931
932 pci_set_master(pdev);
933
934 return 0;
935}
936
Major Lee68077b02011-06-29 14:23:46 +0300937static int sdhci_pci_8bit_width(struct sdhci_host *host, int width)
938{
939 u8 ctrl;
940
941 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
942
943 switch (width) {
944 case MMC_BUS_WIDTH_8:
945 ctrl |= SDHCI_CTRL_8BITBUS;
946 ctrl &= ~SDHCI_CTRL_4BITBUS;
947 break;
948 case MMC_BUS_WIDTH_4:
949 ctrl |= SDHCI_CTRL_4BITBUS;
950 ctrl &= ~SDHCI_CTRL_8BITBUS;
951 break;
952 default:
953 ctrl &= ~(SDHCI_CTRL_8BITBUS | SDHCI_CTRL_4BITBUS);
954 break;
955 }
956
957 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
958
959 return 0;
960}
961
Adrian Hunter0f201652011-08-29 16:42:13 +0300962static void sdhci_pci_hw_reset(struct sdhci_host *host)
963{
964 struct sdhci_pci_slot *slot = sdhci_priv(host);
965 int rst_n_gpio = slot->rst_n_gpio;
966
967 if (!gpio_is_valid(rst_n_gpio))
968 return;
969 gpio_set_value_cansleep(rst_n_gpio, 0);
970 /* For eMMC, minimum is 1us but give it 10us for good measure */
971 udelay(10);
972 gpio_set_value_cansleep(rst_n_gpio, 1);
973 /* For eMMC, minimum is 200us but give it 300us for good measure */
974 usleep_range(300, 1000);
975}
976
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100977static struct sdhci_ops sdhci_pci_ops = {
978 .enable_dma = sdhci_pci_enable_dma,
Major Lee68077b02011-06-29 14:23:46 +0300979 .platform_8bit_width = sdhci_pci_8bit_width,
Adrian Hunter0f201652011-08-29 16:42:13 +0300980 .hw_reset = sdhci_pci_hw_reset,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100981};
982
983/*****************************************************************************\
984 * *
985 * Suspend/resume *
986 * *
987\*****************************************************************************/
988
989#ifdef CONFIG_PM
990
Manuel Lauss29495aa2011-11-03 11:09:45 +0100991static int sdhci_pci_suspend(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100992{
Manuel Lauss29495aa2011-11-03 11:09:45 +0100993 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100994 struct sdhci_pci_chip *chip;
995 struct sdhci_pci_slot *slot;
Daniel Drake5f619702010-11-04 22:20:39 +0000996 mmc_pm_flag_t slot_pm_flags;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800997 mmc_pm_flag_t pm_flags = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100998 int i, ret;
999
1000 chip = pci_get_drvdata(pdev);
1001 if (!chip)
1002 return 0;
1003
Ameya Palandeb177bc92011-04-05 21:13:13 +03001004 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001005 slot = chip->slots[i];
1006 if (!slot)
1007 continue;
1008
Manuel Lauss29495aa2011-11-03 11:09:45 +01001009 ret = sdhci_suspend_host(slot->host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001010
Axel Linb678b912011-12-03 15:28:05 +08001011 if (ret)
1012 goto err_pci_suspend;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001013
Daniel Drake5f619702010-11-04 22:20:39 +00001014 slot_pm_flags = slot->host->mmc->pm_flags;
1015 if (slot_pm_flags & MMC_PM_WAKE_SDIO_IRQ)
1016 sdhci_enable_irq_wakeups(slot->host);
1017
1018 pm_flags |= slot_pm_flags;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001019 }
1020
Pierre Ossman44894282008-04-04 19:36:59 +02001021 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001022 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001023 if (ret)
1024 goto err_pci_suspend;
Pierre Ossman44894282008-04-04 19:36:59 +02001025 }
1026
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001027 pci_save_state(pdev);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001028 if (pm_flags & MMC_PM_KEEP_POWER) {
Daniel Drake5f619702010-11-04 22:20:39 +00001029 if (pm_flags & MMC_PM_WAKE_SDIO_IRQ) {
1030 pci_pme_active(pdev, true);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001031 pci_enable_wake(pdev, PCI_D3hot, 1);
Daniel Drake5f619702010-11-04 22:20:39 +00001032 }
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001033 pci_set_power_state(pdev, PCI_D3hot);
1034 } else {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001035 pci_enable_wake(pdev, PCI_D3hot, 0);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001036 pci_disable_device(pdev);
Manuel Lauss29495aa2011-11-03 11:09:45 +01001037 pci_set_power_state(pdev, PCI_D3hot);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001038 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001039
1040 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001041
1042err_pci_suspend:
1043 while (--i >= 0)
1044 sdhci_resume_host(chip->slots[i]->host);
1045 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001046}
1047
Manuel Lauss29495aa2011-11-03 11:09:45 +01001048static int sdhci_pci_resume(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001049{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001050 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001051 struct sdhci_pci_chip *chip;
1052 struct sdhci_pci_slot *slot;
1053 int i, ret;
1054
1055 chip = pci_get_drvdata(pdev);
1056 if (!chip)
1057 return 0;
1058
1059 pci_set_power_state(pdev, PCI_D0);
1060 pci_restore_state(pdev);
1061 ret = pci_enable_device(pdev);
1062 if (ret)
1063 return ret;
1064
Pierre Ossman45211e22008-03-24 13:09:09 +01001065 if (chip->fixes && chip->fixes->resume) {
1066 ret = chip->fixes->resume(chip);
1067 if (ret)
1068 return ret;
1069 }
1070
Ameya Palandeb177bc92011-04-05 21:13:13 +03001071 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001072 slot = chip->slots[i];
1073 if (!slot)
1074 continue;
1075
1076 ret = sdhci_resume_host(slot->host);
1077 if (ret)
1078 return ret;
1079 }
1080
1081 return 0;
1082}
1083
1084#else /* CONFIG_PM */
1085
1086#define sdhci_pci_suspend NULL
1087#define sdhci_pci_resume NULL
1088
1089#endif /* CONFIG_PM */
1090
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001091#ifdef CONFIG_PM_RUNTIME
1092
1093static int sdhci_pci_runtime_suspend(struct device *dev)
1094{
1095 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1096 struct sdhci_pci_chip *chip;
1097 struct sdhci_pci_slot *slot;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001098 int i, ret;
1099
1100 chip = pci_get_drvdata(pdev);
1101 if (!chip)
1102 return 0;
1103
1104 for (i = 0; i < chip->num_slots; i++) {
1105 slot = chip->slots[i];
1106 if (!slot)
1107 continue;
1108
1109 ret = sdhci_runtime_suspend_host(slot->host);
1110
Axel Linb678b912011-12-03 15:28:05 +08001111 if (ret)
1112 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001113 }
1114
1115 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001116 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001117 if (ret)
1118 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001119 }
1120
1121 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001122
1123err_pci_runtime_suspend:
1124 while (--i >= 0)
1125 sdhci_runtime_resume_host(chip->slots[i]->host);
1126 return ret;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001127}
1128
1129static int sdhci_pci_runtime_resume(struct device *dev)
1130{
1131 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1132 struct sdhci_pci_chip *chip;
1133 struct sdhci_pci_slot *slot;
1134 int i, ret;
1135
1136 chip = pci_get_drvdata(pdev);
1137 if (!chip)
1138 return 0;
1139
1140 if (chip->fixes && chip->fixes->resume) {
1141 ret = chip->fixes->resume(chip);
1142 if (ret)
1143 return ret;
1144 }
1145
1146 for (i = 0; i < chip->num_slots; i++) {
1147 slot = chip->slots[i];
1148 if (!slot)
1149 continue;
1150
1151 ret = sdhci_runtime_resume_host(slot->host);
1152 if (ret)
1153 return ret;
1154 }
1155
1156 return 0;
1157}
1158
1159static int sdhci_pci_runtime_idle(struct device *dev)
1160{
1161 return 0;
1162}
1163
1164#else
1165
1166#define sdhci_pci_runtime_suspend NULL
1167#define sdhci_pci_runtime_resume NULL
1168#define sdhci_pci_runtime_idle NULL
1169
1170#endif
1171
1172static const struct dev_pm_ops sdhci_pci_pm_ops = {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001173 .suspend = sdhci_pci_suspend,
1174 .resume = sdhci_pci_resume,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001175 .runtime_suspend = sdhci_pci_runtime_suspend,
1176 .runtime_resume = sdhci_pci_runtime_resume,
1177 .runtime_idle = sdhci_pci_runtime_idle,
1178};
1179
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001180/*****************************************************************************\
1181 * *
1182 * Device probing/removal *
1183 * *
1184\*****************************************************************************/
1185
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001186static struct sdhci_pci_slot *sdhci_pci_probe_slot(
Adrian Hunter52c506f2011-12-27 15:48:43 +02001187 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar,
1188 int slotno)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001189{
1190 struct sdhci_pci_slot *slot;
1191 struct sdhci_host *host;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001192 int ret, bar = first_bar + slotno;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001193
1194 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
1195 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
1196 return ERR_PTR(-ENODEV);
1197 }
1198
Adrian Hunter90b3e6c2012-10-18 09:54:31 +03001199 if (pci_resource_len(pdev, bar) < 0x100) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001200 dev_err(&pdev->dev, "Invalid iomem size. You may "
1201 "experience problems.\n");
1202 }
1203
1204 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1205 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
1206 return ERR_PTR(-ENODEV);
1207 }
1208
1209 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
1210 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
1211 return ERR_PTR(-ENODEV);
1212 }
1213
1214 host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot));
1215 if (IS_ERR(host)) {
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001216 dev_err(&pdev->dev, "cannot allocate host\n");
Julia Lawalldc0fd7b2010-05-26 14:42:11 -07001217 return ERR_CAST(host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001218 }
1219
1220 slot = sdhci_priv(host);
1221
1222 slot->chip = chip;
1223 slot->host = host;
1224 slot->pci_bar = bar;
Adrian Hunter0f201652011-08-29 16:42:13 +03001225 slot->rst_n_gpio = -EINVAL;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001226 slot->cd_gpio = -EINVAL;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001227
Adrian Hunter52c506f2011-12-27 15:48:43 +02001228 /* Retrieve platform data if there is any */
1229 if (*sdhci_pci_get_data)
1230 slot->data = sdhci_pci_get_data(pdev, slotno);
1231
1232 if (slot->data) {
1233 if (slot->data->setup) {
1234 ret = slot->data->setup(slot->data);
1235 if (ret) {
1236 dev_err(&pdev->dev, "platform setup failed\n");
1237 goto free;
1238 }
1239 }
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001240 slot->rst_n_gpio = slot->data->rst_n_gpio;
1241 slot->cd_gpio = slot->data->cd_gpio;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001242 }
1243
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001244 host->hw_name = "PCI";
1245 host->ops = &sdhci_pci_ops;
1246 host->quirks = chip->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001247 host->quirks2 = chip->quirks2;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001248
1249 host->irq = pdev->irq;
1250
1251 ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc));
1252 if (ret) {
1253 dev_err(&pdev->dev, "cannot request region\n");
Adrian Hunter52c506f2011-12-27 15:48:43 +02001254 goto cleanup;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001255 }
1256
Arjan van de Ven092f82e2008-09-28 16:15:56 -07001257 host->ioaddr = pci_ioremap_bar(pdev, bar);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001258 if (!host->ioaddr) {
1259 dev_err(&pdev->dev, "failed to remap registers\n");
Chris Ball9fdcdbb2011-03-29 00:46:12 -04001260 ret = -ENOMEM;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001261 goto release;
1262 }
1263
Pierre Ossman44894282008-04-04 19:36:59 +02001264 if (chip->fixes && chip->fixes->probe_slot) {
1265 ret = chip->fixes->probe_slot(slot);
1266 if (ret)
1267 goto unmap;
1268 }
1269
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001270 if (gpio_is_valid(slot->rst_n_gpio)) {
1271 if (!gpio_request(slot->rst_n_gpio, "eMMC_reset")) {
1272 gpio_direction_output(slot->rst_n_gpio, 1);
1273 slot->host->mmc->caps |= MMC_CAP_HW_RESET;
1274 } else {
1275 dev_warn(&pdev->dev, "failed to request rst_n_gpio\n");
1276 slot->rst_n_gpio = -EINVAL;
1277 }
1278 }
1279
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001280 host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ;
1281
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001282 ret = sdhci_add_host(host);
1283 if (ret)
Pierre Ossman44894282008-04-04 19:36:59 +02001284 goto remove;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001285
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001286 sdhci_pci_add_own_cd(slot);
1287
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001288 return slot;
1289
Pierre Ossman44894282008-04-04 19:36:59 +02001290remove:
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001291 if (gpio_is_valid(slot->rst_n_gpio))
1292 gpio_free(slot->rst_n_gpio);
1293
Pierre Ossman44894282008-04-04 19:36:59 +02001294 if (chip->fixes && chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001295 chip->fixes->remove_slot(slot, 0);
Pierre Ossman44894282008-04-04 19:36:59 +02001296
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001297unmap:
1298 iounmap(host->ioaddr);
1299
1300release:
1301 pci_release_region(pdev, bar);
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001302
Adrian Hunter52c506f2011-12-27 15:48:43 +02001303cleanup:
1304 if (slot->data && slot->data->cleanup)
1305 slot->data->cleanup(slot->data);
1306
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001307free:
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001308 sdhci_free_host(host);
1309
1310 return ERR_PTR(ret);
1311}
1312
1313static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
1314{
Pierre Ossman1e728592008-04-16 19:13:13 +02001315 int dead;
1316 u32 scratch;
1317
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001318 sdhci_pci_remove_own_cd(slot);
1319
Pierre Ossman1e728592008-04-16 19:13:13 +02001320 dead = 0;
1321 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
1322 if (scratch == (u32)-1)
1323 dead = 1;
1324
1325 sdhci_remove_host(slot->host, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001326
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001327 if (gpio_is_valid(slot->rst_n_gpio))
1328 gpio_free(slot->rst_n_gpio);
1329
Pierre Ossman44894282008-04-04 19:36:59 +02001330 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001331 slot->chip->fixes->remove_slot(slot, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001332
Adrian Hunter52c506f2011-12-27 15:48:43 +02001333 if (slot->data && slot->data->cleanup)
1334 slot->data->cleanup(slot->data);
1335
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001336 pci_release_region(slot->chip->pdev, slot->pci_bar);
Pierre Ossman44894282008-04-04 19:36:59 +02001337
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001338 sdhci_free_host(slot->host);
1339}
1340
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001341static void sdhci_pci_runtime_pm_allow(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001342{
1343 pm_runtime_put_noidle(dev);
1344 pm_runtime_allow(dev);
1345 pm_runtime_set_autosuspend_delay(dev, 50);
1346 pm_runtime_use_autosuspend(dev);
1347 pm_suspend_ignore_children(dev, 1);
1348}
1349
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001350static void sdhci_pci_runtime_pm_forbid(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001351{
1352 pm_runtime_forbid(dev);
1353 pm_runtime_get_noresume(dev);
1354}
1355
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001356static int sdhci_pci_probe(struct pci_dev *pdev,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001357 const struct pci_device_id *ent)
1358{
1359 struct sdhci_pci_chip *chip;
1360 struct sdhci_pci_slot *slot;
1361
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001362 u8 slots, first_bar;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001363 int ret, i;
1364
1365 BUG_ON(pdev == NULL);
1366 BUG_ON(ent == NULL);
1367
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001368 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001369 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001370
1371 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
1372 if (ret)
1373 return ret;
1374
1375 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
1376 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
1377 if (slots == 0)
1378 return -ENODEV;
1379
1380 BUG_ON(slots > MAX_SLOTS);
1381
1382 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
1383 if (ret)
1384 return ret;
1385
1386 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
1387
1388 if (first_bar > 5) {
1389 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
1390 return -ENODEV;
1391 }
1392
1393 ret = pci_enable_device(pdev);
1394 if (ret)
1395 return ret;
1396
1397 chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
1398 if (!chip) {
1399 ret = -ENOMEM;
1400 goto err;
1401 }
1402
1403 chip->pdev = pdev;
Ameya Palandeb177bc92011-04-05 21:13:13 +03001404 chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001405 if (chip->fixes) {
Pierre Ossman22606402008-03-23 19:33:23 +01001406 chip->quirks = chip->fixes->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001407 chip->quirks2 = chip->fixes->quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001408 chip->allow_runtime_pm = chip->fixes->allow_runtime_pm;
1409 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001410 chip->num_slots = slots;
1411
1412 pci_set_drvdata(pdev, chip);
1413
Pierre Ossman22606402008-03-23 19:33:23 +01001414 if (chip->fixes && chip->fixes->probe) {
1415 ret = chip->fixes->probe(chip);
1416 if (ret)
1417 goto free;
1418 }
1419
Alan Cox225d85f2010-10-04 15:24:21 +01001420 slots = chip->num_slots; /* Quirk may have changed this */
1421
Ameya Palandeb177bc92011-04-05 21:13:13 +03001422 for (i = 0; i < slots; i++) {
Adrian Hunter52c506f2011-12-27 15:48:43 +02001423 slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001424 if (IS_ERR(slot)) {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001425 for (i--; i >= 0; i--)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001426 sdhci_pci_remove_slot(chip->slots[i]);
1427 ret = PTR_ERR(slot);
1428 goto free;
1429 }
1430
1431 chip->slots[i] = slot;
1432 }
1433
Adrian Hunterc43fd772011-10-17 10:52:44 +03001434 if (chip->allow_runtime_pm)
1435 sdhci_pci_runtime_pm_allow(&pdev->dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001436
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001437 return 0;
1438
1439free:
1440 pci_set_drvdata(pdev, NULL);
1441 kfree(chip);
1442
1443err:
1444 pci_disable_device(pdev);
1445 return ret;
1446}
1447
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001448static void sdhci_pci_remove(struct pci_dev *pdev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001449{
1450 int i;
1451 struct sdhci_pci_chip *chip;
1452
1453 chip = pci_get_drvdata(pdev);
1454
1455 if (chip) {
Adrian Hunterc43fd772011-10-17 10:52:44 +03001456 if (chip->allow_runtime_pm)
1457 sdhci_pci_runtime_pm_forbid(&pdev->dev);
1458
Ameya Palandeb177bc92011-04-05 21:13:13 +03001459 for (i = 0; i < chip->num_slots; i++)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001460 sdhci_pci_remove_slot(chip->slots[i]);
1461
1462 pci_set_drvdata(pdev, NULL);
1463 kfree(chip);
1464 }
1465
1466 pci_disable_device(pdev);
1467}
1468
1469static struct pci_driver sdhci_driver = {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001470 .name = "sdhci-pci",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001471 .id_table = pci_ids,
Ameya Palandeb177bc92011-04-05 21:13:13 +03001472 .probe = sdhci_pci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001473 .remove = sdhci_pci_remove,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001474 .driver = {
1475 .pm = &sdhci_pci_pm_ops
1476 },
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001477};
1478
Sachin Kamatacc69642012-08-27 11:57:02 +05301479module_pci_driver(sdhci_driver);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001480
Pierre Ossman32710e82009-04-08 20:14:54 +02001481MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001482MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1483MODULE_LICENSE("GPL");