blob: 701d06d0e1fb2c63a174f0332da96a37850fd240 [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
Adrian Hunter728ef3d2013-04-26 11:27:23 +030036#define PCI_DEVICE_ID_INTEL_BYT_EMMC 0x0f14
37#define PCI_DEVICE_ID_INTEL_BYT_SDIO 0x0f15
38#define PCI_DEVICE_ID_INTEL_BYT_SD 0x0f16
Alexander Stein296e0b02012-03-14 08:38:58 +010039
40/*
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010041 * PCI registers
42 */
43
44#define PCI_SDHCI_IFPIO 0x00
45#define PCI_SDHCI_IFDMA 0x01
46#define PCI_SDHCI_IFVENDOR 0x02
47
48#define PCI_SLOT_INFO 0x40 /* 8 bits */
49#define PCI_SLOT_INFO_SLOTS(x) ((x >> 4) & 7)
50#define PCI_SLOT_INFO_FIRST_BAR_MASK 0x07
51
52#define MAX_SLOTS 8
53
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010054struct sdhci_pci_chip;
Pierre Ossman44894282008-04-04 19:36:59 +020055struct sdhci_pci_slot;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010056
Pierre Ossman22606402008-03-23 19:33:23 +010057struct sdhci_pci_fixes {
58 unsigned int quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +020059 unsigned int quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +030060 bool allow_runtime_pm;
Pierre Ossman22606402008-03-23 19:33:23 +010061
Ameya Palandeb177bc92011-04-05 21:13:13 +030062 int (*probe) (struct sdhci_pci_chip *);
Pierre Ossman45211e22008-03-24 13:09:09 +010063
Ameya Palandeb177bc92011-04-05 21:13:13 +030064 int (*probe_slot) (struct sdhci_pci_slot *);
65 void (*remove_slot) (struct sdhci_pci_slot *, int);
Pierre Ossman44894282008-04-04 19:36:59 +020066
Manuel Lauss29495aa2011-11-03 11:09:45 +010067 int (*suspend) (struct sdhci_pci_chip *);
Ameya Palandeb177bc92011-04-05 21:13:13 +030068 int (*resume) (struct sdhci_pci_chip *);
Pierre Ossman22606402008-03-23 19:33:23 +010069};
70
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010071struct sdhci_pci_slot {
72 struct sdhci_pci_chip *chip;
73 struct sdhci_host *host;
Adrian Hunter52c506f2011-12-27 15:48:43 +020074 struct sdhci_pci_data *data;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010075
76 int pci_bar;
Adrian Hunter0f201652011-08-29 16:42:13 +030077 int rst_n_gpio;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030078 int cd_gpio;
79 int cd_irq;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010080};
81
82struct sdhci_pci_chip {
83 struct pci_dev *pdev;
Pierre Ossman22606402008-03-23 19:33:23 +010084
85 unsigned int quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +020086 unsigned int quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +030087 bool allow_runtime_pm;
Pierre Ossman22606402008-03-23 19:33:23 +010088 const struct sdhci_pci_fixes *fixes;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010089
90 int num_slots; /* Slots on controller */
91 struct sdhci_pci_slot *slots[MAX_SLOTS]; /* Pointers to host slots */
92};
93
Pierre Ossman22606402008-03-23 19:33:23 +010094
95/*****************************************************************************\
96 * *
97 * Hardware specific quirk handling *
98 * *
99\*****************************************************************************/
100
101static int ricoh_probe(struct sdhci_pci_chip *chip)
102{
Chris Ballc99436f2009-09-22 16:45:22 -0700103 if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
104 chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
Pierre Ossman22606402008-03-23 19:33:23 +0100105 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700106 return 0;
107}
Pierre Ossman22606402008-03-23 19:33:23 +0100108
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700109static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot)
110{
111 slot->host->caps =
112 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT)
113 & SDHCI_TIMEOUT_CLK_MASK) |
114
115 ((0x21 << SDHCI_CLOCK_BASE_SHIFT)
116 & SDHCI_CLOCK_BASE_MASK) |
117
118 SDHCI_TIMEOUT_CLK_UNIT |
119 SDHCI_CAN_VDD_330 |
Madhvapathi Sriram1a1f1f02012-10-15 04:47:30 +0000120 SDHCI_CAN_DO_HISPD |
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700121 SDHCI_CAN_DO_SDMA;
122 return 0;
123}
124
125static int ricoh_mmc_resume(struct sdhci_pci_chip *chip)
126{
127 /* Apply a delay to allow controller to settle */
128 /* Otherwise it becomes confused if card state changed
129 during suspend */
130 msleep(500);
Pierre Ossman22606402008-03-23 19:33:23 +0100131 return 0;
132}
133
134static const struct sdhci_pci_fixes sdhci_ricoh = {
135 .probe = ricoh_probe,
Vasily Khoruzhick84938292010-03-05 13:43:46 -0800136 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
137 SDHCI_QUIRK_FORCE_DMA |
138 SDHCI_QUIRK_CLOCK_BEFORE_RESET,
Pierre Ossman22606402008-03-23 19:33:23 +0100139};
140
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700141static const struct sdhci_pci_fixes sdhci_ricoh_mmc = {
142 .probe_slot = ricoh_mmc_probe_slot,
143 .resume = ricoh_mmc_resume,
144 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
145 SDHCI_QUIRK_CLOCK_BEFORE_RESET |
146 SDHCI_QUIRK_NO_CARD_NO_RESET |
147 SDHCI_QUIRK_MISSING_CAPS
148};
149
Pierre Ossman22606402008-03-23 19:33:23 +0100150static const struct sdhci_pci_fixes sdhci_ene_712 = {
151 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
152 SDHCI_QUIRK_BROKEN_DMA,
153};
154
155static const struct sdhci_pci_fixes sdhci_ene_714 = {
156 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
157 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS |
158 SDHCI_QUIRK_BROKEN_DMA,
159};
160
161static const struct sdhci_pci_fixes sdhci_cafe = {
162 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
Andres Salomona0874892009-03-02 21:48:20 +0100163 SDHCI_QUIRK_NO_BUSY_IRQ |
Daniel Drake55fc05b2012-07-03 23:13:39 +0100164 SDHCI_QUIRK_BROKEN_CARD_DETECTION |
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200165 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
Pierre Ossman22606402008-03-23 19:33:23 +0100166};
167
Major Lee68077b02011-06-29 14:23:46 +0300168static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot)
169{
170 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
171 return 0;
172}
173
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100174/*
175 * ADMA operation is disabled for Moorestown platform due to
176 * hardware bugs.
177 */
Jacob Pan35ac6f02010-11-09 13:57:29 +0000178static int mrst_hc_probe(struct sdhci_pci_chip *chip)
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100179{
180 /*
Jacob Pan35ac6f02010-11-09 13:57:29 +0000181 * slots number is fixed here for MRST as SDIO3/5 are never used and
182 * have hardware bugs.
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100183 */
184 chip->num_slots = 1;
185 return 0;
186}
187
Alexander Stein296e0b02012-03-14 08:38:58 +0100188static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
189{
190 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
191 return 0;
192}
193
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300194#ifdef CONFIG_PM_RUNTIME
195
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200196static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300197{
198 struct sdhci_pci_slot *slot = dev_id;
199 struct sdhci_host *host = slot->host;
200
201 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
202 return IRQ_HANDLED;
203}
204
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200205static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300206{
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200207 int err, irq, gpio = slot->cd_gpio;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300208
209 slot->cd_gpio = -EINVAL;
210 slot->cd_irq = -EINVAL;
211
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200212 if (!gpio_is_valid(gpio))
213 return;
214
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300215 err = gpio_request(gpio, "sd_cd");
216 if (err < 0)
217 goto out;
218
219 err = gpio_direction_input(gpio);
220 if (err < 0)
221 goto out_free;
222
223 irq = gpio_to_irq(gpio);
224 if (irq < 0)
225 goto out_free;
226
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200227 err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING |
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300228 IRQF_TRIGGER_FALLING, "sd_cd", slot);
229 if (err)
230 goto out_free;
231
232 slot->cd_gpio = gpio;
233 slot->cd_irq = irq;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300234
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200235 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300236
237out_free:
238 gpio_free(gpio);
239out:
240 dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300241}
242
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200243static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300244{
245 if (slot->cd_irq >= 0)
246 free_irq(slot->cd_irq, slot);
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200247 if (gpio_is_valid(slot->cd_gpio))
248 gpio_free(slot->cd_gpio);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300249}
250
251#else
252
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200253static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
254{
255}
256
257static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
258{
259}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300260
261#endif
262
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300263static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
264{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300265 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
Adrian Hunterda721cf2012-02-07 14:48:53 +0200266 slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC |
267 MMC_CAP2_HC_ERASE_SZ;
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300268 return 0;
269}
270
Adrian Hunter93933502011-12-27 15:48:47 +0200271static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot)
272{
Adrian Hunter012e4672012-01-30 14:27:18 +0200273 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
Adrian Hunter93933502011-12-27 15:48:47 +0200274 return 0;
275}
276
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100277static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
278 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Major Lee68077b02011-06-29 14:23:46 +0300279 .probe_slot = mrst_hc_probe_slot,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100280};
281
Jacob Pan35ac6f02010-11-09 13:57:29 +0000282static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100283 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000284 .probe = mrst_hc_probe,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100285};
286
Xiaochen Shen29229052010-10-04 15:24:52 +0100287static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
288 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300289 .allow_runtime_pm = true,
Xiaochen Shen29229052010-10-04 15:24:52 +0100290};
291
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300292static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = {
Xiaochen Shen29229052010-10-04 15:24:52 +0100293 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterf3c55a72012-02-07 14:48:55 +0200294 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300295 .allow_runtime_pm = true,
Adrian Hunter93933502011-12-27 15:48:47 +0200296 .probe_slot = mfd_sdio_probe_slot,
Xiaochen Shen29229052010-10-04 15:24:52 +0100297};
298
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300299static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = {
300 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300301 .allow_runtime_pm = true,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300302 .probe_slot = mfd_emmc_probe_slot,
303};
304
Alexander Stein296e0b02012-03-14 08:38:58 +0100305static const struct sdhci_pci_fixes sdhci_intel_pch_sdio = {
306 .quirks = SDHCI_QUIRK_BROKEN_ADMA,
307 .probe_slot = pch_hc_probe_slot,
308};
309
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300310static int byt_emmc_probe_slot(struct sdhci_pci_slot *slot)
311{
312 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
313 slot->host->mmc->caps2 |= MMC_CAP2_HC_ERASE_SZ;
314 return 0;
315}
316
317static int byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
318{
319 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
320 return 0;
321}
322
323static const struct sdhci_pci_fixes sdhci_intel_byt_emmc = {
324 .allow_runtime_pm = true,
325 .probe_slot = byt_emmc_probe_slot,
326};
327
328static const struct sdhci_pci_fixes sdhci_intel_byt_sdio = {
329 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
330 .allow_runtime_pm = true,
331 .probe_slot = byt_sdio_probe_slot,
332};
333
334static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
335};
336
Jennifer Li26daa1e2010-11-17 23:01:59 -0500337/* O2Micro extra registers */
338#define O2_SD_LOCK_WP 0xD3
339#define O2_SD_MULTI_VCC3V 0xEE
340#define O2_SD_CLKREQ 0xEC
341#define O2_SD_CAPS 0xE0
342#define O2_SD_ADMA1 0xE2
343#define O2_SD_ADMA2 0xE7
344#define O2_SD_INF_MOD 0xF1
345
346static int o2_probe(struct sdhci_pci_chip *chip)
347{
348 int ret;
349 u8 scratch;
350
351 switch (chip->pdev->device) {
352 case PCI_DEVICE_ID_O2_8220:
353 case PCI_DEVICE_ID_O2_8221:
354 case PCI_DEVICE_ID_O2_8320:
355 case PCI_DEVICE_ID_O2_8321:
356 /* This extra setup is required due to broken ADMA. */
357 ret = pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch);
358 if (ret)
359 return ret;
360 scratch &= 0x7f;
361 pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
362
363 /* Set Multi 3 to VCC3V# */
364 pci_write_config_byte(chip->pdev, O2_SD_MULTI_VCC3V, 0x08);
365
366 /* Disable CLK_REQ# support after media DET */
367 ret = pci_read_config_byte(chip->pdev, O2_SD_CLKREQ, &scratch);
368 if (ret)
369 return ret;
370 scratch |= 0x20;
371 pci_write_config_byte(chip->pdev, O2_SD_CLKREQ, scratch);
372
373 /* Choose capabilities, enable SDMA. We have to write 0x01
374 * to the capabilities register first to unlock it.
375 */
376 ret = pci_read_config_byte(chip->pdev, O2_SD_CAPS, &scratch);
377 if (ret)
378 return ret;
379 scratch |= 0x01;
380 pci_write_config_byte(chip->pdev, O2_SD_CAPS, scratch);
381 pci_write_config_byte(chip->pdev, O2_SD_CAPS, 0x73);
382
383 /* Disable ADMA1/2 */
384 pci_write_config_byte(chip->pdev, O2_SD_ADMA1, 0x39);
385 pci_write_config_byte(chip->pdev, O2_SD_ADMA2, 0x08);
386
387 /* Disable the infinite transfer mode */
388 ret = pci_read_config_byte(chip->pdev, O2_SD_INF_MOD, &scratch);
389 if (ret)
390 return ret;
391 scratch |= 0x08;
392 pci_write_config_byte(chip->pdev, O2_SD_INF_MOD, scratch);
393
394 /* Lock WP */
395 ret = pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch);
396 if (ret)
397 return ret;
398 scratch |= 0x80;
399 pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
400 }
401
402 return 0;
403}
404
Pierre Ossman45211e22008-03-24 13:09:09 +0100405static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
406{
407 u8 scratch;
408 int ret;
409
410 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
411 if (ret)
412 return ret;
413
414 /*
415 * Turn PMOS on [bit 0], set over current detection to 2.4 V
416 * [bit 1:2] and enable over current debouncing [bit 6].
417 */
418 if (on)
419 scratch |= 0x47;
420 else
421 scratch &= ~0x47;
422
423 ret = pci_write_config_byte(chip->pdev, 0xAE, scratch);
424 if (ret)
425 return ret;
426
427 return 0;
428}
429
430static int jmicron_probe(struct sdhci_pci_chip *chip)
431{
432 int ret;
Takashi Iwai8f230f42010-12-08 10:04:30 +0100433 u16 mmcdev = 0;
Pierre Ossman45211e22008-03-24 13:09:09 +0100434
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200435 if (chip->pdev->revision == 0) {
436 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
437 SDHCI_QUIRK_32BIT_DMA_SIZE |
Pierre Ossman2134a922008-06-28 18:28:51 +0200438 SDHCI_QUIRK_32BIT_ADMA_SIZE |
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200439 SDHCI_QUIRK_RESET_AFTER_REQUEST |
Pierre Ossman86a6a872009-02-02 21:13:49 +0100440 SDHCI_QUIRK_BROKEN_SMALL_PIO;
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200441 }
442
Pierre Ossman45211e22008-03-24 13:09:09 +0100443 /*
Pierre Ossman44894282008-04-04 19:36:59 +0200444 * JMicron chips can have two interfaces to the same hardware
445 * in order to work around limitations in Microsoft's driver.
446 * We need to make sure we only bind to one of them.
447 *
448 * This code assumes two things:
449 *
450 * 1. The PCI code adds subfunctions in order.
451 *
452 * 2. The MMC interface has a lower subfunction number
453 * than the SD interface.
454 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100455 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD)
456 mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC;
457 else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD)
458 mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD;
459
460 if (mmcdev) {
Pierre Ossman44894282008-04-04 19:36:59 +0200461 struct pci_dev *sd_dev;
462
463 sd_dev = NULL;
464 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
Takashi Iwai8f230f42010-12-08 10:04:30 +0100465 mmcdev, sd_dev)) != NULL) {
Pierre Ossman44894282008-04-04 19:36:59 +0200466 if ((PCI_SLOT(chip->pdev->devfn) ==
467 PCI_SLOT(sd_dev->devfn)) &&
468 (chip->pdev->bus == sd_dev->bus))
469 break;
470 }
471
472 if (sd_dev) {
473 pci_dev_put(sd_dev);
474 dev_info(&chip->pdev->dev, "Refusing to bind to "
475 "secondary interface.\n");
476 return -ENODEV;
477 }
478 }
479
480 /*
Pierre Ossman45211e22008-03-24 13:09:09 +0100481 * JMicron chips need a bit of a nudge to enable the power
482 * output pins.
483 */
484 ret = jmicron_pmos(chip, 1);
485 if (ret) {
486 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
487 return ret;
488 }
489
Takashi Iwai82b0e232011-04-21 20:26:38 +0200490 /* quirk for unsable RO-detection on JM388 chips */
491 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD ||
492 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
493 chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT;
494
Pierre Ossman45211e22008-03-24 13:09:09 +0100495 return 0;
496}
497
Pierre Ossman44894282008-04-04 19:36:59 +0200498static void jmicron_enable_mmc(struct sdhci_host *host, int on)
499{
500 u8 scratch;
501
502 scratch = readb(host->ioaddr + 0xC0);
503
504 if (on)
505 scratch |= 0x01;
506 else
507 scratch &= ~0x01;
508
509 writeb(scratch, host->ioaddr + 0xC0);
510}
511
512static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
513{
Pierre Ossman2134a922008-06-28 18:28:51 +0200514 if (slot->chip->pdev->revision == 0) {
515 u16 version;
516
517 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
518 version = (version & SDHCI_VENDOR_VER_MASK) >>
519 SDHCI_VENDOR_VER_SHIFT;
520
521 /*
522 * Older versions of the chip have lots of nasty glitches
523 * in the ADMA engine. It's best just to avoid it
524 * completely.
525 */
526 if (version < 0xAC)
527 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
528 }
529
Takashi Iwai8f230f42010-12-08 10:04:30 +0100530 /* JM388 MMC doesn't support 1.8V while SD supports it */
531 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
532 slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 |
533 MMC_VDD_29_30 | MMC_VDD_30_31 |
534 MMC_VDD_165_195; /* allow 1.8V */
535 slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 |
536 MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */
537 }
538
Pierre Ossman44894282008-04-04 19:36:59 +0200539 /*
540 * The secondary interface requires a bit set to get the
541 * interrupts.
542 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100543 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
544 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200545 jmicron_enable_mmc(slot->host, 1);
546
Takashi Iwaid75c1082010-12-16 17:54:14 +0100547 slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST;
548
Pierre Ossman44894282008-04-04 19:36:59 +0200549 return 0;
550}
551
Pierre Ossman1e728592008-04-16 19:13:13 +0200552static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
Pierre Ossman44894282008-04-04 19:36:59 +0200553{
Pierre Ossman1e728592008-04-16 19:13:13 +0200554 if (dead)
555 return;
556
Takashi Iwai8f230f42010-12-08 10:04:30 +0100557 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
558 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200559 jmicron_enable_mmc(slot->host, 0);
560}
561
Manuel Lauss29495aa2011-11-03 11:09:45 +0100562static int jmicron_suspend(struct sdhci_pci_chip *chip)
Pierre Ossman44894282008-04-04 19:36:59 +0200563{
564 int i;
565
Takashi Iwai8f230f42010-12-08 10:04:30 +0100566 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
567 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300568 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200569 jmicron_enable_mmc(chip->slots[i]->host, 0);
570 }
571
572 return 0;
573}
574
Pierre Ossman45211e22008-03-24 13:09:09 +0100575static int jmicron_resume(struct sdhci_pci_chip *chip)
576{
Pierre Ossman44894282008-04-04 19:36:59 +0200577 int ret, i;
578
Takashi Iwai8f230f42010-12-08 10:04:30 +0100579 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
580 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300581 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200582 jmicron_enable_mmc(chip->slots[i]->host, 1);
583 }
Pierre Ossman45211e22008-03-24 13:09:09 +0100584
585 ret = jmicron_pmos(chip, 1);
586 if (ret) {
587 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
588 return ret;
589 }
590
591 return 0;
592}
593
Jennifer Li26daa1e2010-11-17 23:01:59 -0500594static const struct sdhci_pci_fixes sdhci_o2 = {
595 .probe = o2_probe,
596};
597
Pierre Ossman22606402008-03-23 19:33:23 +0100598static const struct sdhci_pci_fixes sdhci_jmicron = {
Pierre Ossman45211e22008-03-24 13:09:09 +0100599 .probe = jmicron_probe,
600
Pierre Ossman44894282008-04-04 19:36:59 +0200601 .probe_slot = jmicron_probe_slot,
602 .remove_slot = jmicron_remove_slot,
603
604 .suspend = jmicron_suspend,
Pierre Ossman45211e22008-03-24 13:09:09 +0100605 .resume = jmicron_resume,
Pierre Ossman22606402008-03-23 19:33:23 +0100606};
607
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800608/* SysKonnect CardBus2SDIO extra registers */
609#define SYSKT_CTRL 0x200
610#define SYSKT_RDFIFO_STAT 0x204
611#define SYSKT_WRFIFO_STAT 0x208
612#define SYSKT_POWER_DATA 0x20c
613#define SYSKT_POWER_330 0xef
614#define SYSKT_POWER_300 0xf8
615#define SYSKT_POWER_184 0xcc
616#define SYSKT_POWER_CMD 0x20d
617#define SYSKT_POWER_START (1 << 7)
618#define SYSKT_POWER_STATUS 0x20e
619#define SYSKT_POWER_STATUS_OK (1 << 0)
620#define SYSKT_BOARD_REV 0x210
621#define SYSKT_CHIP_REV 0x211
622#define SYSKT_CONF_DATA 0x212
623#define SYSKT_CONF_DATA_1V8 (1 << 2)
624#define SYSKT_CONF_DATA_2V5 (1 << 1)
625#define SYSKT_CONF_DATA_3V3 (1 << 0)
626
627static int syskt_probe(struct sdhci_pci_chip *chip)
628{
629 if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
630 chip->pdev->class &= ~0x0000FF;
631 chip->pdev->class |= PCI_SDHCI_IFDMA;
632 }
633 return 0;
634}
635
636static int syskt_probe_slot(struct sdhci_pci_slot *slot)
637{
638 int tm, ps;
639
640 u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
641 u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
642 dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
643 "board rev %d.%d, chip rev %d.%d\n",
644 board_rev >> 4, board_rev & 0xf,
645 chip_rev >> 4, chip_rev & 0xf);
646 if (chip_rev >= 0x20)
647 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
648
649 writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
650 writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
651 udelay(50);
652 tm = 10; /* Wait max 1 ms */
653 do {
654 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
655 if (ps & SYSKT_POWER_STATUS_OK)
656 break;
657 udelay(100);
658 } while (--tm);
659 if (!tm) {
660 dev_err(&slot->chip->pdev->dev,
661 "power regulator never stabilized");
662 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
663 return -ENODEV;
664 }
665
666 return 0;
667}
668
669static const struct sdhci_pci_fixes sdhci_syskt = {
670 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
671 .probe = syskt_probe,
672 .probe_slot = syskt_probe_slot,
673};
674
Harald Welte557b0692009-06-18 16:53:38 +0200675static int via_probe(struct sdhci_pci_chip *chip)
676{
677 if (chip->pdev->revision == 0x10)
678 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
679
680 return 0;
681}
682
683static const struct sdhci_pci_fixes sdhci_via = {
684 .probe = via_probe,
685};
686
Bill Pemberton9647f842012-11-19 13:25:11 -0500687static const struct pci_device_id pci_ids[] = {
Pierre Ossman22606402008-03-23 19:33:23 +0100688 {
689 .vendor = PCI_VENDOR_ID_RICOH,
690 .device = PCI_DEVICE_ID_RICOH_R5C822,
691 .subvendor = PCI_ANY_ID,
692 .subdevice = PCI_ANY_ID,
693 .driver_data = (kernel_ulong_t)&sdhci_ricoh,
694 },
695
696 {
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700697 .vendor = PCI_VENDOR_ID_RICOH,
698 .device = 0x843,
699 .subvendor = PCI_ANY_ID,
700 .subdevice = PCI_ANY_ID,
701 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
702 },
703
704 {
Pablo Castillo568133e2010-08-10 18:02:01 -0700705 .vendor = PCI_VENDOR_ID_RICOH,
706 .device = 0xe822,
707 .subvendor = PCI_ANY_ID,
708 .subdevice = PCI_ANY_ID,
709 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
710 },
711
712 {
Manoj Iyer5fd11c02011-02-11 16:25:31 -0600713 .vendor = PCI_VENDOR_ID_RICOH,
714 .device = 0xe823,
715 .subvendor = PCI_ANY_ID,
716 .subdevice = PCI_ANY_ID,
717 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
718 },
719
720 {
Pierre Ossman22606402008-03-23 19:33:23 +0100721 .vendor = PCI_VENDOR_ID_ENE,
722 .device = PCI_DEVICE_ID_ENE_CB712_SD,
723 .subvendor = PCI_ANY_ID,
724 .subdevice = PCI_ANY_ID,
725 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
726 },
727
728 {
729 .vendor = PCI_VENDOR_ID_ENE,
730 .device = PCI_DEVICE_ID_ENE_CB712_SD_2,
731 .subvendor = PCI_ANY_ID,
732 .subdevice = PCI_ANY_ID,
733 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
734 },
735
736 {
737 .vendor = PCI_VENDOR_ID_ENE,
738 .device = PCI_DEVICE_ID_ENE_CB714_SD,
739 .subvendor = PCI_ANY_ID,
740 .subdevice = PCI_ANY_ID,
741 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
742 },
743
744 {
745 .vendor = PCI_VENDOR_ID_ENE,
746 .device = PCI_DEVICE_ID_ENE_CB714_SD_2,
747 .subvendor = PCI_ANY_ID,
748 .subdevice = PCI_ANY_ID,
749 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
750 },
751
752 {
753 .vendor = PCI_VENDOR_ID_MARVELL,
David Woodhouse8c5eb882008-09-03 09:45:57 +0100754 .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD,
Pierre Ossman22606402008-03-23 19:33:23 +0100755 .subvendor = PCI_ANY_ID,
756 .subdevice = PCI_ANY_ID,
757 .driver_data = (kernel_ulong_t)&sdhci_cafe,
758 },
759
760 {
761 .vendor = PCI_VENDOR_ID_JMICRON,
762 .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD,
763 .subvendor = PCI_ANY_ID,
764 .subdevice = PCI_ANY_ID,
765 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
766 },
767
Pierre Ossman44894282008-04-04 19:36:59 +0200768 {
769 .vendor = PCI_VENDOR_ID_JMICRON,
770 .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC,
771 .subvendor = PCI_ANY_ID,
772 .subdevice = PCI_ANY_ID,
773 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
774 },
775
Harald Welte557b0692009-06-18 16:53:38 +0200776 {
Takashi Iwai8f230f42010-12-08 10:04:30 +0100777 .vendor = PCI_VENDOR_ID_JMICRON,
778 .device = PCI_DEVICE_ID_JMICRON_JMB388_SD,
779 .subvendor = PCI_ANY_ID,
780 .subdevice = PCI_ANY_ID,
781 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
782 },
783
784 {
785 .vendor = PCI_VENDOR_ID_JMICRON,
786 .device = PCI_DEVICE_ID_JMICRON_JMB388_ESD,
787 .subvendor = PCI_ANY_ID,
788 .subdevice = PCI_ANY_ID,
789 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
790 },
791
792 {
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800793 .vendor = PCI_VENDOR_ID_SYSKONNECT,
794 .device = 0x8000,
795 .subvendor = PCI_ANY_ID,
796 .subdevice = PCI_ANY_ID,
797 .driver_data = (kernel_ulong_t)&sdhci_syskt,
798 },
799
800 {
Harald Welte557b0692009-06-18 16:53:38 +0200801 .vendor = PCI_VENDOR_ID_VIA,
802 .device = 0x95d0,
803 .subvendor = PCI_ANY_ID,
804 .subdevice = PCI_ANY_ID,
805 .driver_data = (kernel_ulong_t)&sdhci_via,
806 },
807
Xiaochen Shen29229052010-10-04 15:24:52 +0100808 {
809 .vendor = PCI_VENDOR_ID_INTEL,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100810 .device = PCI_DEVICE_ID_INTEL_MRST_SD0,
811 .subvendor = PCI_ANY_ID,
812 .subdevice = PCI_ANY_ID,
813 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc0,
814 },
815
816 {
817 .vendor = PCI_VENDOR_ID_INTEL,
818 .device = PCI_DEVICE_ID_INTEL_MRST_SD1,
819 .subvendor = PCI_ANY_ID,
820 .subdevice = PCI_ANY_ID,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000821 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
822 },
823
824 {
825 .vendor = PCI_VENDOR_ID_INTEL,
826 .device = PCI_DEVICE_ID_INTEL_MRST_SD2,
827 .subvendor = PCI_ANY_ID,
828 .subdevice = PCI_ANY_ID,
829 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100830 },
831
832 {
833 .vendor = PCI_VENDOR_ID_INTEL,
Xiaochen Shen29229052010-10-04 15:24:52 +0100834 .device = PCI_DEVICE_ID_INTEL_MFD_SD,
835 .subvendor = PCI_ANY_ID,
836 .subdevice = PCI_ANY_ID,
837 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
838 },
839
840 {
841 .vendor = PCI_VENDOR_ID_INTEL,
842 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO1,
843 .subvendor = PCI_ANY_ID,
844 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300845 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100846 },
847
848 {
849 .vendor = PCI_VENDOR_ID_INTEL,
850 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO2,
851 .subvendor = PCI_ANY_ID,
852 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300853 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100854 },
855
856 {
857 .vendor = PCI_VENDOR_ID_INTEL,
858 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC0,
859 .subvendor = PCI_ANY_ID,
860 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300861 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100862 },
863
864 {
865 .vendor = PCI_VENDOR_ID_INTEL,
866 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC1,
867 .subvendor = PCI_ANY_ID,
868 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300869 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100870 },
871
Jennifer Li26daa1e2010-11-17 23:01:59 -0500872 {
Alexander Stein296e0b02012-03-14 08:38:58 +0100873 .vendor = PCI_VENDOR_ID_INTEL,
874 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO0,
875 .subvendor = PCI_ANY_ID,
876 .subdevice = PCI_ANY_ID,
877 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
878 },
879
880 {
881 .vendor = PCI_VENDOR_ID_INTEL,
882 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO1,
883 .subvendor = PCI_ANY_ID,
884 .subdevice = PCI_ANY_ID,
885 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
886 },
887
888 {
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300889 .vendor = PCI_VENDOR_ID_INTEL,
890 .device = PCI_DEVICE_ID_INTEL_BYT_EMMC,
891 .subvendor = PCI_ANY_ID,
892 .subdevice = PCI_ANY_ID,
893 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
894 },
895
896 {
897 .vendor = PCI_VENDOR_ID_INTEL,
898 .device = PCI_DEVICE_ID_INTEL_BYT_SDIO,
899 .subvendor = PCI_ANY_ID,
900 .subdevice = PCI_ANY_ID,
901 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
902 },
903
904 {
905 .vendor = PCI_VENDOR_ID_INTEL,
906 .device = PCI_DEVICE_ID_INTEL_BYT_SD,
907 .subvendor = PCI_ANY_ID,
908 .subdevice = PCI_ANY_ID,
909 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
910 },
911
912 {
Jennifer Li26daa1e2010-11-17 23:01:59 -0500913 .vendor = PCI_VENDOR_ID_O2,
914 .device = PCI_DEVICE_ID_O2_8120,
915 .subvendor = PCI_ANY_ID,
916 .subdevice = PCI_ANY_ID,
917 .driver_data = (kernel_ulong_t)&sdhci_o2,
918 },
919
920 {
921 .vendor = PCI_VENDOR_ID_O2,
922 .device = PCI_DEVICE_ID_O2_8220,
923 .subvendor = PCI_ANY_ID,
924 .subdevice = PCI_ANY_ID,
925 .driver_data = (kernel_ulong_t)&sdhci_o2,
926 },
927
928 {
929 .vendor = PCI_VENDOR_ID_O2,
930 .device = PCI_DEVICE_ID_O2_8221,
931 .subvendor = PCI_ANY_ID,
932 .subdevice = PCI_ANY_ID,
933 .driver_data = (kernel_ulong_t)&sdhci_o2,
934 },
935
936 {
937 .vendor = PCI_VENDOR_ID_O2,
938 .device = PCI_DEVICE_ID_O2_8320,
939 .subvendor = PCI_ANY_ID,
940 .subdevice = PCI_ANY_ID,
941 .driver_data = (kernel_ulong_t)&sdhci_o2,
942 },
943
944 {
945 .vendor = PCI_VENDOR_ID_O2,
946 .device = PCI_DEVICE_ID_O2_8321,
947 .subvendor = PCI_ANY_ID,
948 .subdevice = PCI_ANY_ID,
949 .driver_data = (kernel_ulong_t)&sdhci_o2,
950 },
951
Pierre Ossman22606402008-03-23 19:33:23 +0100952 { /* Generic SD host controller */
953 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00)
954 },
955
956 { /* end: all zeroes */ },
957};
958
959MODULE_DEVICE_TABLE(pci, pci_ids);
960
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100961/*****************************************************************************\
962 * *
963 * SDHCI core callbacks *
964 * *
965\*****************************************************************************/
966
967static int sdhci_pci_enable_dma(struct sdhci_host *host)
968{
969 struct sdhci_pci_slot *slot;
970 struct pci_dev *pdev;
971 int ret;
972
973 slot = sdhci_priv(host);
974 pdev = slot->chip->pdev;
975
976 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
977 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -0700978 (host->flags & SDHCI_USE_SDMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100979 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
980 "doesn't fully claim to support it.\n");
981 }
982
Yang Hongyang284901a2009-04-06 19:01:15 -0700983 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100984 if (ret)
985 return ret;
986
987 pci_set_master(pdev);
988
989 return 0;
990}
991
Sascha Hauer7bc088d2013-01-21 19:02:27 +0800992static int sdhci_pci_bus_width(struct sdhci_host *host, int width)
Major Lee68077b02011-06-29 14:23:46 +0300993{
994 u8 ctrl;
995
996 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
997
998 switch (width) {
999 case MMC_BUS_WIDTH_8:
1000 ctrl |= SDHCI_CTRL_8BITBUS;
1001 ctrl &= ~SDHCI_CTRL_4BITBUS;
1002 break;
1003 case MMC_BUS_WIDTH_4:
1004 ctrl |= SDHCI_CTRL_4BITBUS;
1005 ctrl &= ~SDHCI_CTRL_8BITBUS;
1006 break;
1007 default:
1008 ctrl &= ~(SDHCI_CTRL_8BITBUS | SDHCI_CTRL_4BITBUS);
1009 break;
1010 }
1011
1012 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1013
1014 return 0;
1015}
1016
Adrian Hunter0f201652011-08-29 16:42:13 +03001017static void sdhci_pci_hw_reset(struct sdhci_host *host)
1018{
1019 struct sdhci_pci_slot *slot = sdhci_priv(host);
1020 int rst_n_gpio = slot->rst_n_gpio;
1021
1022 if (!gpio_is_valid(rst_n_gpio))
1023 return;
1024 gpio_set_value_cansleep(rst_n_gpio, 0);
1025 /* For eMMC, minimum is 1us but give it 10us for good measure */
1026 udelay(10);
1027 gpio_set_value_cansleep(rst_n_gpio, 1);
1028 /* For eMMC, minimum is 200us but give it 300us for good measure */
1029 usleep_range(300, 1000);
1030}
1031
Lars-Peter Clausenc9155682013-03-13 19:26:05 +01001032static const struct sdhci_ops sdhci_pci_ops = {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001033 .enable_dma = sdhci_pci_enable_dma,
Sascha Hauer7bc088d2013-01-21 19:02:27 +08001034 .platform_bus_width = sdhci_pci_bus_width,
Adrian Hunter0f201652011-08-29 16:42:13 +03001035 .hw_reset = sdhci_pci_hw_reset,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001036};
1037
1038/*****************************************************************************\
1039 * *
1040 * Suspend/resume *
1041 * *
1042\*****************************************************************************/
1043
1044#ifdef CONFIG_PM
1045
Manuel Lauss29495aa2011-11-03 11:09:45 +01001046static int sdhci_pci_suspend(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001047{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001048 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001049 struct sdhci_pci_chip *chip;
1050 struct sdhci_pci_slot *slot;
Daniel Drake5f619702010-11-04 22:20:39 +00001051 mmc_pm_flag_t slot_pm_flags;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001052 mmc_pm_flag_t pm_flags = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001053 int i, ret;
1054
1055 chip = pci_get_drvdata(pdev);
1056 if (!chip)
1057 return 0;
1058
Ameya Palandeb177bc92011-04-05 21:13:13 +03001059 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001060 slot = chip->slots[i];
1061 if (!slot)
1062 continue;
1063
Manuel Lauss29495aa2011-11-03 11:09:45 +01001064 ret = sdhci_suspend_host(slot->host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001065
Axel Linb678b912011-12-03 15:28:05 +08001066 if (ret)
1067 goto err_pci_suspend;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001068
Daniel Drake5f619702010-11-04 22:20:39 +00001069 slot_pm_flags = slot->host->mmc->pm_flags;
1070 if (slot_pm_flags & MMC_PM_WAKE_SDIO_IRQ)
1071 sdhci_enable_irq_wakeups(slot->host);
1072
1073 pm_flags |= slot_pm_flags;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001074 }
1075
Pierre Ossman44894282008-04-04 19:36:59 +02001076 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001077 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001078 if (ret)
1079 goto err_pci_suspend;
Pierre Ossman44894282008-04-04 19:36:59 +02001080 }
1081
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001082 pci_save_state(pdev);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001083 if (pm_flags & MMC_PM_KEEP_POWER) {
Daniel Drake5f619702010-11-04 22:20:39 +00001084 if (pm_flags & MMC_PM_WAKE_SDIO_IRQ) {
1085 pci_pme_active(pdev, true);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001086 pci_enable_wake(pdev, PCI_D3hot, 1);
Daniel Drake5f619702010-11-04 22:20:39 +00001087 }
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001088 pci_set_power_state(pdev, PCI_D3hot);
1089 } else {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001090 pci_enable_wake(pdev, PCI_D3hot, 0);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001091 pci_disable_device(pdev);
Manuel Lauss29495aa2011-11-03 11:09:45 +01001092 pci_set_power_state(pdev, PCI_D3hot);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001093 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001094
1095 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001096
1097err_pci_suspend:
1098 while (--i >= 0)
1099 sdhci_resume_host(chip->slots[i]->host);
1100 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001101}
1102
Manuel Lauss29495aa2011-11-03 11:09:45 +01001103static int sdhci_pci_resume(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001104{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001105 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001106 struct sdhci_pci_chip *chip;
1107 struct sdhci_pci_slot *slot;
1108 int i, ret;
1109
1110 chip = pci_get_drvdata(pdev);
1111 if (!chip)
1112 return 0;
1113
1114 pci_set_power_state(pdev, PCI_D0);
1115 pci_restore_state(pdev);
1116 ret = pci_enable_device(pdev);
1117 if (ret)
1118 return ret;
1119
Pierre Ossman45211e22008-03-24 13:09:09 +01001120 if (chip->fixes && chip->fixes->resume) {
1121 ret = chip->fixes->resume(chip);
1122 if (ret)
1123 return ret;
1124 }
1125
Ameya Palandeb177bc92011-04-05 21:13:13 +03001126 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001127 slot = chip->slots[i];
1128 if (!slot)
1129 continue;
1130
1131 ret = sdhci_resume_host(slot->host);
1132 if (ret)
1133 return ret;
1134 }
1135
1136 return 0;
1137}
1138
1139#else /* CONFIG_PM */
1140
1141#define sdhci_pci_suspend NULL
1142#define sdhci_pci_resume NULL
1143
1144#endif /* CONFIG_PM */
1145
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001146#ifdef CONFIG_PM_RUNTIME
1147
1148static int sdhci_pci_runtime_suspend(struct device *dev)
1149{
1150 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1151 struct sdhci_pci_chip *chip;
1152 struct sdhci_pci_slot *slot;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001153 int i, ret;
1154
1155 chip = pci_get_drvdata(pdev);
1156 if (!chip)
1157 return 0;
1158
1159 for (i = 0; i < chip->num_slots; i++) {
1160 slot = chip->slots[i];
1161 if (!slot)
1162 continue;
1163
1164 ret = sdhci_runtime_suspend_host(slot->host);
1165
Axel Linb678b912011-12-03 15:28:05 +08001166 if (ret)
1167 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001168 }
1169
1170 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001171 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001172 if (ret)
1173 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001174 }
1175
1176 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001177
1178err_pci_runtime_suspend:
1179 while (--i >= 0)
1180 sdhci_runtime_resume_host(chip->slots[i]->host);
1181 return ret;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001182}
1183
1184static int sdhci_pci_runtime_resume(struct device *dev)
1185{
1186 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1187 struct sdhci_pci_chip *chip;
1188 struct sdhci_pci_slot *slot;
1189 int i, ret;
1190
1191 chip = pci_get_drvdata(pdev);
1192 if (!chip)
1193 return 0;
1194
1195 if (chip->fixes && chip->fixes->resume) {
1196 ret = chip->fixes->resume(chip);
1197 if (ret)
1198 return ret;
1199 }
1200
1201 for (i = 0; i < chip->num_slots; i++) {
1202 slot = chip->slots[i];
1203 if (!slot)
1204 continue;
1205
1206 ret = sdhci_runtime_resume_host(slot->host);
1207 if (ret)
1208 return ret;
1209 }
1210
1211 return 0;
1212}
1213
1214static int sdhci_pci_runtime_idle(struct device *dev)
1215{
1216 return 0;
1217}
1218
1219#else
1220
1221#define sdhci_pci_runtime_suspend NULL
1222#define sdhci_pci_runtime_resume NULL
1223#define sdhci_pci_runtime_idle NULL
1224
1225#endif
1226
1227static const struct dev_pm_ops sdhci_pci_pm_ops = {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001228 .suspend = sdhci_pci_suspend,
1229 .resume = sdhci_pci_resume,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001230 .runtime_suspend = sdhci_pci_runtime_suspend,
1231 .runtime_resume = sdhci_pci_runtime_resume,
1232 .runtime_idle = sdhci_pci_runtime_idle,
1233};
1234
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001235/*****************************************************************************\
1236 * *
1237 * Device probing/removal *
1238 * *
1239\*****************************************************************************/
1240
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001241static struct sdhci_pci_slot *sdhci_pci_probe_slot(
Adrian Hunter52c506f2011-12-27 15:48:43 +02001242 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar,
1243 int slotno)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001244{
1245 struct sdhci_pci_slot *slot;
1246 struct sdhci_host *host;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001247 int ret, bar = first_bar + slotno;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001248
1249 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
1250 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
1251 return ERR_PTR(-ENODEV);
1252 }
1253
Adrian Hunter90b3e6c2012-10-18 09:54:31 +03001254 if (pci_resource_len(pdev, bar) < 0x100) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001255 dev_err(&pdev->dev, "Invalid iomem size. You may "
1256 "experience problems.\n");
1257 }
1258
1259 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1260 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
1261 return ERR_PTR(-ENODEV);
1262 }
1263
1264 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
1265 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
1266 return ERR_PTR(-ENODEV);
1267 }
1268
1269 host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot));
1270 if (IS_ERR(host)) {
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001271 dev_err(&pdev->dev, "cannot allocate host\n");
Julia Lawalldc0fd7b2010-05-26 14:42:11 -07001272 return ERR_CAST(host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001273 }
1274
1275 slot = sdhci_priv(host);
1276
1277 slot->chip = chip;
1278 slot->host = host;
1279 slot->pci_bar = bar;
Adrian Hunter0f201652011-08-29 16:42:13 +03001280 slot->rst_n_gpio = -EINVAL;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001281 slot->cd_gpio = -EINVAL;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001282
Adrian Hunter52c506f2011-12-27 15:48:43 +02001283 /* Retrieve platform data if there is any */
1284 if (*sdhci_pci_get_data)
1285 slot->data = sdhci_pci_get_data(pdev, slotno);
1286
1287 if (slot->data) {
1288 if (slot->data->setup) {
1289 ret = slot->data->setup(slot->data);
1290 if (ret) {
1291 dev_err(&pdev->dev, "platform setup failed\n");
1292 goto free;
1293 }
1294 }
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001295 slot->rst_n_gpio = slot->data->rst_n_gpio;
1296 slot->cd_gpio = slot->data->cd_gpio;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001297 }
1298
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001299 host->hw_name = "PCI";
1300 host->ops = &sdhci_pci_ops;
1301 host->quirks = chip->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001302 host->quirks2 = chip->quirks2;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001303
1304 host->irq = pdev->irq;
1305
1306 ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc));
1307 if (ret) {
1308 dev_err(&pdev->dev, "cannot request region\n");
Adrian Hunter52c506f2011-12-27 15:48:43 +02001309 goto cleanup;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001310 }
1311
Arjan van de Ven092f82e2008-09-28 16:15:56 -07001312 host->ioaddr = pci_ioremap_bar(pdev, bar);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001313 if (!host->ioaddr) {
1314 dev_err(&pdev->dev, "failed to remap registers\n");
Chris Ball9fdcdbb2011-03-29 00:46:12 -04001315 ret = -ENOMEM;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001316 goto release;
1317 }
1318
Pierre Ossman44894282008-04-04 19:36:59 +02001319 if (chip->fixes && chip->fixes->probe_slot) {
1320 ret = chip->fixes->probe_slot(slot);
1321 if (ret)
1322 goto unmap;
1323 }
1324
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001325 if (gpio_is_valid(slot->rst_n_gpio)) {
1326 if (!gpio_request(slot->rst_n_gpio, "eMMC_reset")) {
1327 gpio_direction_output(slot->rst_n_gpio, 1);
1328 slot->host->mmc->caps |= MMC_CAP_HW_RESET;
1329 } else {
1330 dev_warn(&pdev->dev, "failed to request rst_n_gpio\n");
1331 slot->rst_n_gpio = -EINVAL;
1332 }
1333 }
1334
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001335 host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ;
Aaron Lueed222a2013-03-05 11:24:52 +08001336 host->mmc->slotno = slotno;
Adrian Huntera08b17b2013-04-15 11:27:25 -04001337 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001338
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001339 ret = sdhci_add_host(host);
1340 if (ret)
Pierre Ossman44894282008-04-04 19:36:59 +02001341 goto remove;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001342
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001343 sdhci_pci_add_own_cd(slot);
1344
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001345 return slot;
1346
Pierre Ossman44894282008-04-04 19:36:59 +02001347remove:
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001348 if (gpio_is_valid(slot->rst_n_gpio))
1349 gpio_free(slot->rst_n_gpio);
1350
Pierre Ossman44894282008-04-04 19:36:59 +02001351 if (chip->fixes && chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001352 chip->fixes->remove_slot(slot, 0);
Pierre Ossman44894282008-04-04 19:36:59 +02001353
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001354unmap:
1355 iounmap(host->ioaddr);
1356
1357release:
1358 pci_release_region(pdev, bar);
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001359
Adrian Hunter52c506f2011-12-27 15:48:43 +02001360cleanup:
1361 if (slot->data && slot->data->cleanup)
1362 slot->data->cleanup(slot->data);
1363
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001364free:
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001365 sdhci_free_host(host);
1366
1367 return ERR_PTR(ret);
1368}
1369
1370static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
1371{
Pierre Ossman1e728592008-04-16 19:13:13 +02001372 int dead;
1373 u32 scratch;
1374
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001375 sdhci_pci_remove_own_cd(slot);
1376
Pierre Ossman1e728592008-04-16 19:13:13 +02001377 dead = 0;
1378 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
1379 if (scratch == (u32)-1)
1380 dead = 1;
1381
1382 sdhci_remove_host(slot->host, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001383
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001384 if (gpio_is_valid(slot->rst_n_gpio))
1385 gpio_free(slot->rst_n_gpio);
1386
Pierre Ossman44894282008-04-04 19:36:59 +02001387 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001388 slot->chip->fixes->remove_slot(slot, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001389
Adrian Hunter52c506f2011-12-27 15:48:43 +02001390 if (slot->data && slot->data->cleanup)
1391 slot->data->cleanup(slot->data);
1392
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001393 pci_release_region(slot->chip->pdev, slot->pci_bar);
Pierre Ossman44894282008-04-04 19:36:59 +02001394
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001395 sdhci_free_host(slot->host);
1396}
1397
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001398static void sdhci_pci_runtime_pm_allow(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001399{
1400 pm_runtime_put_noidle(dev);
1401 pm_runtime_allow(dev);
1402 pm_runtime_set_autosuspend_delay(dev, 50);
1403 pm_runtime_use_autosuspend(dev);
1404 pm_suspend_ignore_children(dev, 1);
1405}
1406
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001407static void sdhci_pci_runtime_pm_forbid(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001408{
1409 pm_runtime_forbid(dev);
1410 pm_runtime_get_noresume(dev);
1411}
1412
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001413static int sdhci_pci_probe(struct pci_dev *pdev,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001414 const struct pci_device_id *ent)
1415{
1416 struct sdhci_pci_chip *chip;
1417 struct sdhci_pci_slot *slot;
1418
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001419 u8 slots, first_bar;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001420 int ret, i;
1421
1422 BUG_ON(pdev == NULL);
1423 BUG_ON(ent == NULL);
1424
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001425 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001426 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001427
1428 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
1429 if (ret)
1430 return ret;
1431
1432 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
1433 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
1434 if (slots == 0)
1435 return -ENODEV;
1436
1437 BUG_ON(slots > MAX_SLOTS);
1438
1439 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
1440 if (ret)
1441 return ret;
1442
1443 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
1444
1445 if (first_bar > 5) {
1446 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
1447 return -ENODEV;
1448 }
1449
1450 ret = pci_enable_device(pdev);
1451 if (ret)
1452 return ret;
1453
1454 chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
1455 if (!chip) {
1456 ret = -ENOMEM;
1457 goto err;
1458 }
1459
1460 chip->pdev = pdev;
Ameya Palandeb177bc92011-04-05 21:13:13 +03001461 chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001462 if (chip->fixes) {
Pierre Ossman22606402008-03-23 19:33:23 +01001463 chip->quirks = chip->fixes->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001464 chip->quirks2 = chip->fixes->quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001465 chip->allow_runtime_pm = chip->fixes->allow_runtime_pm;
1466 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001467 chip->num_slots = slots;
1468
1469 pci_set_drvdata(pdev, chip);
1470
Pierre Ossman22606402008-03-23 19:33:23 +01001471 if (chip->fixes && chip->fixes->probe) {
1472 ret = chip->fixes->probe(chip);
1473 if (ret)
1474 goto free;
1475 }
1476
Alan Cox225d85f2010-10-04 15:24:21 +01001477 slots = chip->num_slots; /* Quirk may have changed this */
1478
Ameya Palandeb177bc92011-04-05 21:13:13 +03001479 for (i = 0; i < slots; i++) {
Adrian Hunter52c506f2011-12-27 15:48:43 +02001480 slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001481 if (IS_ERR(slot)) {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001482 for (i--; i >= 0; i--)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001483 sdhci_pci_remove_slot(chip->slots[i]);
1484 ret = PTR_ERR(slot);
1485 goto free;
1486 }
1487
1488 chip->slots[i] = slot;
1489 }
1490
Adrian Hunterc43fd772011-10-17 10:52:44 +03001491 if (chip->allow_runtime_pm)
1492 sdhci_pci_runtime_pm_allow(&pdev->dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001493
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001494 return 0;
1495
1496free:
1497 pci_set_drvdata(pdev, NULL);
1498 kfree(chip);
1499
1500err:
1501 pci_disable_device(pdev);
1502 return ret;
1503}
1504
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001505static void sdhci_pci_remove(struct pci_dev *pdev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001506{
1507 int i;
1508 struct sdhci_pci_chip *chip;
1509
1510 chip = pci_get_drvdata(pdev);
1511
1512 if (chip) {
Adrian Hunterc43fd772011-10-17 10:52:44 +03001513 if (chip->allow_runtime_pm)
1514 sdhci_pci_runtime_pm_forbid(&pdev->dev);
1515
Ameya Palandeb177bc92011-04-05 21:13:13 +03001516 for (i = 0; i < chip->num_slots; i++)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001517 sdhci_pci_remove_slot(chip->slots[i]);
1518
1519 pci_set_drvdata(pdev, NULL);
1520 kfree(chip);
1521 }
1522
1523 pci_disable_device(pdev);
1524}
1525
1526static struct pci_driver sdhci_driver = {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001527 .name = "sdhci-pci",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001528 .id_table = pci_ids,
Ameya Palandeb177bc92011-04-05 21:13:13 +03001529 .probe = sdhci_pci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001530 .remove = sdhci_pci_remove,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001531 .driver = {
1532 .pm = &sdhci_pci_pm_ops
1533 },
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001534};
1535
Sachin Kamatacc69642012-08-27 11:57:02 +05301536module_pci_driver(sdhci_driver);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001537
Pierre Ossman32710e82009-04-08 20:14:54 +02001538MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001539MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1540MODULE_LICENSE("GPL");