1 /* linux/drivers/mmc/host/sdhci-pci.c - SDHCI on PCI bus interface
3 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
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.
10 * Thanks to the following companies for their support:
12 * - JMicron (hardware and technical support)
15 #include <linux/delay.h>
16 #include <linux/highmem.h>
17 #include <linux/module.h>
18 #include <linux/pci.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/slab.h>
21 #include <linux/device.h>
22 #include <linux/mmc/host.h>
23 #include <linux/scatterlist.h>
25 #include <linux/gpio.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/mmc/sdhci-pci-data.h>
35 #define PCI_SDHCI_IFPIO 0x00
36 #define PCI_SDHCI_IFDMA 0x01
37 #define PCI_SDHCI_IFVENDOR 0x02
39 #define PCI_SLOT_INFO 0x40 /* 8 bits */
40 #define PCI_SLOT_INFO_SLOTS(x) ((x >> 4) & 7)
41 #define PCI_SLOT_INFO_FIRST_BAR_MASK 0x07
45 struct sdhci_pci_chip
;
46 struct sdhci_pci_slot
;
48 struct sdhci_pci_fixes
{
50 bool allow_runtime_pm
;
52 int (*probe
) (struct sdhci_pci_chip
*);
54 int (*probe_slot
) (struct sdhci_pci_slot
*);
55 void (*remove_slot
) (struct sdhci_pci_slot
*, int);
57 int (*suspend
) (struct sdhci_pci_chip
*);
58 int (*resume
) (struct sdhci_pci_chip
*);
61 struct sdhci_pci_slot
{
62 struct sdhci_pci_chip
*chip
;
63 struct sdhci_host
*host
;
64 struct sdhci_pci_data
*data
;
72 struct sdhci_pci_chip
{
76 bool allow_runtime_pm
;
77 const struct sdhci_pci_fixes
*fixes
;
79 int num_slots
; /* Slots on controller */
80 struct sdhci_pci_slot
*slots
[MAX_SLOTS
]; /* Pointers to host slots */
84 /*****************************************************************************\
86 * Hardware specific quirk handling *
88 \*****************************************************************************/
90 static int ricoh_probe(struct sdhci_pci_chip
*chip
)
92 if (chip
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_SAMSUNG
||
93 chip
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_SONY
)
94 chip
->quirks
|= SDHCI_QUIRK_NO_CARD_NO_RESET
;
98 static int ricoh_mmc_probe_slot(struct sdhci_pci_slot
*slot
)
101 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT
)
102 & SDHCI_TIMEOUT_CLK_MASK
) |
104 ((0x21 << SDHCI_CLOCK_BASE_SHIFT
)
105 & SDHCI_CLOCK_BASE_MASK
) |
107 SDHCI_TIMEOUT_CLK_UNIT
|
113 static int ricoh_mmc_resume(struct sdhci_pci_chip
*chip
)
115 /* Apply a delay to allow controller to settle */
116 /* Otherwise it becomes confused if card state changed
122 static const struct sdhci_pci_fixes sdhci_ricoh
= {
123 .probe
= ricoh_probe
,
124 .quirks
= SDHCI_QUIRK_32BIT_DMA_ADDR
|
125 SDHCI_QUIRK_FORCE_DMA
|
126 SDHCI_QUIRK_CLOCK_BEFORE_RESET
,
129 static const struct sdhci_pci_fixes sdhci_ricoh_mmc
= {
130 .probe_slot
= ricoh_mmc_probe_slot
,
131 .resume
= ricoh_mmc_resume
,
132 .quirks
= SDHCI_QUIRK_32BIT_DMA_ADDR
|
133 SDHCI_QUIRK_CLOCK_BEFORE_RESET
|
134 SDHCI_QUIRK_NO_CARD_NO_RESET
|
135 SDHCI_QUIRK_MISSING_CAPS
138 static const struct sdhci_pci_fixes sdhci_ene_712
= {
139 .quirks
= SDHCI_QUIRK_SINGLE_POWER_WRITE
|
140 SDHCI_QUIRK_BROKEN_DMA
,
143 static const struct sdhci_pci_fixes sdhci_ene_714
= {
144 .quirks
= SDHCI_QUIRK_SINGLE_POWER_WRITE
|
145 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS
|
146 SDHCI_QUIRK_BROKEN_DMA
,
149 static const struct sdhci_pci_fixes sdhci_cafe
= {
150 .quirks
= SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER
|
151 SDHCI_QUIRK_NO_BUSY_IRQ
|
152 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
,
155 static int mrst_hc_probe_slot(struct sdhci_pci_slot
*slot
)
157 slot
->host
->mmc
->caps
|= MMC_CAP_8_BIT_DATA
;
162 * ADMA operation is disabled for Moorestown platform due to
165 static int mrst_hc_probe(struct sdhci_pci_chip
*chip
)
168 * slots number is fixed here for MRST as SDIO3/5 are never used and
169 * have hardware bugs.
175 #ifdef CONFIG_PM_RUNTIME
177 static irqreturn_t
sdhci_pci_sd_cd(int irq
, void *dev_id
)
179 struct sdhci_pci_slot
*slot
= dev_id
;
180 struct sdhci_host
*host
= slot
->host
;
182 mmc_detect_change(host
->mmc
, msecs_to_jiffies(200));
186 static void sdhci_pci_add_own_cd(struct sdhci_pci_slot
*slot
)
188 int err
, irq
, gpio
= slot
->cd_gpio
;
190 slot
->cd_gpio
= -EINVAL
;
191 slot
->cd_irq
= -EINVAL
;
193 if (!gpio_is_valid(gpio
))
196 err
= gpio_request(gpio
, "sd_cd");
200 err
= gpio_direction_input(gpio
);
204 irq
= gpio_to_irq(gpio
);
208 err
= request_irq(irq
, sdhci_pci_sd_cd
, IRQF_TRIGGER_RISING
|
209 IRQF_TRIGGER_FALLING
, "sd_cd", slot
);
213 slot
->cd_gpio
= gpio
;
221 dev_warn(&slot
->chip
->pdev
->dev
, "failed to setup card detect wake up\n");
224 static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot
*slot
)
226 if (slot
->cd_irq
>= 0)
227 free_irq(slot
->cd_irq
, slot
);
228 if (gpio_is_valid(slot
->cd_gpio
))
229 gpio_free(slot
->cd_gpio
);
234 static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot
*slot
)
238 static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot
*slot
)
244 static int mfd_emmc_probe_slot(struct sdhci_pci_slot
*slot
)
246 slot
->host
->mmc
->caps
|= MMC_CAP_8_BIT_DATA
| MMC_CAP_NONREMOVABLE
;
247 slot
->host
->mmc
->caps2
= MMC_CAP2_BOOTPART_NOACC
;
251 static int mfd_sdio_probe_slot(struct sdhci_pci_slot
*slot
)
253 slot
->host
->mmc
->caps
|= MMC_CAP_POWER_OFF_CARD
| MMC_CAP_NONREMOVABLE
;
257 static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0
= {
258 .quirks
= SDHCI_QUIRK_BROKEN_ADMA
| SDHCI_QUIRK_NO_HISPD_BIT
,
259 .probe_slot
= mrst_hc_probe_slot
,
262 static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2
= {
263 .quirks
= SDHCI_QUIRK_BROKEN_ADMA
| SDHCI_QUIRK_NO_HISPD_BIT
,
264 .probe
= mrst_hc_probe
,
267 static const struct sdhci_pci_fixes sdhci_intel_mfd_sd
= {
268 .quirks
= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
,
269 .allow_runtime_pm
= true,
272 static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio
= {
273 .quirks
= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
,
274 .allow_runtime_pm
= true,
275 .probe_slot
= mfd_sdio_probe_slot
,
278 static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc
= {
279 .quirks
= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
,
280 .allow_runtime_pm
= true,
281 .probe_slot
= mfd_emmc_probe_slot
,
284 /* O2Micro extra registers */
285 #define O2_SD_LOCK_WP 0xD3
286 #define O2_SD_MULTI_VCC3V 0xEE
287 #define O2_SD_CLKREQ 0xEC
288 #define O2_SD_CAPS 0xE0
289 #define O2_SD_ADMA1 0xE2
290 #define O2_SD_ADMA2 0xE7
291 #define O2_SD_INF_MOD 0xF1
293 static int o2_probe(struct sdhci_pci_chip
*chip
)
298 switch (chip
->pdev
->device
) {
299 case PCI_DEVICE_ID_O2_8220
:
300 case PCI_DEVICE_ID_O2_8221
:
301 case PCI_DEVICE_ID_O2_8320
:
302 case PCI_DEVICE_ID_O2_8321
:
303 /* This extra setup is required due to broken ADMA. */
304 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_LOCK_WP
, &scratch
);
308 pci_write_config_byte(chip
->pdev
, O2_SD_LOCK_WP
, scratch
);
310 /* Set Multi 3 to VCC3V# */
311 pci_write_config_byte(chip
->pdev
, O2_SD_MULTI_VCC3V
, 0x08);
313 /* Disable CLK_REQ# support after media DET */
314 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_CLKREQ
, &scratch
);
318 pci_write_config_byte(chip
->pdev
, O2_SD_CLKREQ
, scratch
);
320 /* Choose capabilities, enable SDMA. We have to write 0x01
321 * to the capabilities register first to unlock it.
323 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_CAPS
, &scratch
);
327 pci_write_config_byte(chip
->pdev
, O2_SD_CAPS
, scratch
);
328 pci_write_config_byte(chip
->pdev
, O2_SD_CAPS
, 0x73);
330 /* Disable ADMA1/2 */
331 pci_write_config_byte(chip
->pdev
, O2_SD_ADMA1
, 0x39);
332 pci_write_config_byte(chip
->pdev
, O2_SD_ADMA2
, 0x08);
334 /* Disable the infinite transfer mode */
335 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_INF_MOD
, &scratch
);
339 pci_write_config_byte(chip
->pdev
, O2_SD_INF_MOD
, scratch
);
342 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_LOCK_WP
, &scratch
);
346 pci_write_config_byte(chip
->pdev
, O2_SD_LOCK_WP
, scratch
);
352 static int jmicron_pmos(struct sdhci_pci_chip
*chip
, int on
)
357 ret
= pci_read_config_byte(chip
->pdev
, 0xAE, &scratch
);
362 * Turn PMOS on [bit 0], set over current detection to 2.4 V
363 * [bit 1:2] and enable over current debouncing [bit 6].
370 ret
= pci_write_config_byte(chip
->pdev
, 0xAE, scratch
);
377 static int jmicron_probe(struct sdhci_pci_chip
*chip
)
382 if (chip
->pdev
->revision
== 0) {
383 chip
->quirks
|= SDHCI_QUIRK_32BIT_DMA_ADDR
|
384 SDHCI_QUIRK_32BIT_DMA_SIZE
|
385 SDHCI_QUIRK_32BIT_ADMA_SIZE
|
386 SDHCI_QUIRK_RESET_AFTER_REQUEST
|
387 SDHCI_QUIRK_BROKEN_SMALL_PIO
;
391 * JMicron chips can have two interfaces to the same hardware
392 * in order to work around limitations in Microsoft's driver.
393 * We need to make sure we only bind to one of them.
395 * This code assumes two things:
397 * 1. The PCI code adds subfunctions in order.
399 * 2. The MMC interface has a lower subfunction number
400 * than the SD interface.
402 if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_SD
)
403 mmcdev
= PCI_DEVICE_ID_JMICRON_JMB38X_MMC
;
404 else if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_SD
)
405 mmcdev
= PCI_DEVICE_ID_JMICRON_JMB388_ESD
;
408 struct pci_dev
*sd_dev
;
411 while ((sd_dev
= pci_get_device(PCI_VENDOR_ID_JMICRON
,
412 mmcdev
, sd_dev
)) != NULL
) {
413 if ((PCI_SLOT(chip
->pdev
->devfn
) ==
414 PCI_SLOT(sd_dev
->devfn
)) &&
415 (chip
->pdev
->bus
== sd_dev
->bus
))
421 dev_info(&chip
->pdev
->dev
, "Refusing to bind to "
422 "secondary interface.\n");
428 * JMicron chips need a bit of a nudge to enable the power
431 ret
= jmicron_pmos(chip
, 1);
433 dev_err(&chip
->pdev
->dev
, "Failure enabling card power\n");
437 /* quirk for unsable RO-detection on JM388 chips */
438 if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_SD
||
439 chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
)
440 chip
->quirks
|= SDHCI_QUIRK_UNSTABLE_RO_DETECT
;
445 static void jmicron_enable_mmc(struct sdhci_host
*host
, int on
)
449 scratch
= readb(host
->ioaddr
+ 0xC0);
456 writeb(scratch
, host
->ioaddr
+ 0xC0);
459 static int jmicron_probe_slot(struct sdhci_pci_slot
*slot
)
461 if (slot
->chip
->pdev
->revision
== 0) {
464 version
= readl(slot
->host
->ioaddr
+ SDHCI_HOST_VERSION
);
465 version
= (version
& SDHCI_VENDOR_VER_MASK
) >>
466 SDHCI_VENDOR_VER_SHIFT
;
469 * Older versions of the chip have lots of nasty glitches
470 * in the ADMA engine. It's best just to avoid it
474 slot
->host
->quirks
|= SDHCI_QUIRK_BROKEN_ADMA
;
477 /* JM388 MMC doesn't support 1.8V while SD supports it */
478 if (slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
) {
479 slot
->host
->ocr_avail_sd
= MMC_VDD_32_33
| MMC_VDD_33_34
|
480 MMC_VDD_29_30
| MMC_VDD_30_31
|
481 MMC_VDD_165_195
; /* allow 1.8V */
482 slot
->host
->ocr_avail_mmc
= MMC_VDD_32_33
| MMC_VDD_33_34
|
483 MMC_VDD_29_30
| MMC_VDD_30_31
; /* no 1.8V for MMC */
487 * The secondary interface requires a bit set to get the
490 if (slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_MMC
||
491 slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
)
492 jmicron_enable_mmc(slot
->host
, 1);
494 slot
->host
->mmc
->caps
|= MMC_CAP_BUS_WIDTH_TEST
;
499 static void jmicron_remove_slot(struct sdhci_pci_slot
*slot
, int dead
)
504 if (slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_MMC
||
505 slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
)
506 jmicron_enable_mmc(slot
->host
, 0);
509 static int jmicron_suspend(struct sdhci_pci_chip
*chip
)
513 if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_MMC
||
514 chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
) {
515 for (i
= 0; i
< chip
->num_slots
; i
++)
516 jmicron_enable_mmc(chip
->slots
[i
]->host
, 0);
522 static int jmicron_resume(struct sdhci_pci_chip
*chip
)
526 if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_MMC
||
527 chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
) {
528 for (i
= 0; i
< chip
->num_slots
; i
++)
529 jmicron_enable_mmc(chip
->slots
[i
]->host
, 1);
532 ret
= jmicron_pmos(chip
, 1);
534 dev_err(&chip
->pdev
->dev
, "Failure enabling card power\n");
541 static const struct sdhci_pci_fixes sdhci_o2
= {
545 static const struct sdhci_pci_fixes sdhci_jmicron
= {
546 .probe
= jmicron_probe
,
548 .probe_slot
= jmicron_probe_slot
,
549 .remove_slot
= jmicron_remove_slot
,
551 .suspend
= jmicron_suspend
,
552 .resume
= jmicron_resume
,
555 /* SysKonnect CardBus2SDIO extra registers */
556 #define SYSKT_CTRL 0x200
557 #define SYSKT_RDFIFO_STAT 0x204
558 #define SYSKT_WRFIFO_STAT 0x208
559 #define SYSKT_POWER_DATA 0x20c
560 #define SYSKT_POWER_330 0xef
561 #define SYSKT_POWER_300 0xf8
562 #define SYSKT_POWER_184 0xcc
563 #define SYSKT_POWER_CMD 0x20d
564 #define SYSKT_POWER_START (1 << 7)
565 #define SYSKT_POWER_STATUS 0x20e
566 #define SYSKT_POWER_STATUS_OK (1 << 0)
567 #define SYSKT_BOARD_REV 0x210
568 #define SYSKT_CHIP_REV 0x211
569 #define SYSKT_CONF_DATA 0x212
570 #define SYSKT_CONF_DATA_1V8 (1 << 2)
571 #define SYSKT_CONF_DATA_2V5 (1 << 1)
572 #define SYSKT_CONF_DATA_3V3 (1 << 0)
574 static int syskt_probe(struct sdhci_pci_chip
*chip
)
576 if ((chip
->pdev
->class & 0x0000FF) == PCI_SDHCI_IFVENDOR
) {
577 chip
->pdev
->class &= ~0x0000FF;
578 chip
->pdev
->class |= PCI_SDHCI_IFDMA
;
583 static int syskt_probe_slot(struct sdhci_pci_slot
*slot
)
587 u8 board_rev
= readb(slot
->host
->ioaddr
+ SYSKT_BOARD_REV
);
588 u8 chip_rev
= readb(slot
->host
->ioaddr
+ SYSKT_CHIP_REV
);
589 dev_info(&slot
->chip
->pdev
->dev
, "SysKonnect CardBus2SDIO, "
590 "board rev %d.%d, chip rev %d.%d\n",
591 board_rev
>> 4, board_rev
& 0xf,
592 chip_rev
>> 4, chip_rev
& 0xf);
593 if (chip_rev
>= 0x20)
594 slot
->host
->quirks
|= SDHCI_QUIRK_FORCE_DMA
;
596 writeb(SYSKT_POWER_330
, slot
->host
->ioaddr
+ SYSKT_POWER_DATA
);
597 writeb(SYSKT_POWER_START
, slot
->host
->ioaddr
+ SYSKT_POWER_CMD
);
599 tm
= 10; /* Wait max 1 ms */
601 ps
= readw(slot
->host
->ioaddr
+ SYSKT_POWER_STATUS
);
602 if (ps
& SYSKT_POWER_STATUS_OK
)
607 dev_err(&slot
->chip
->pdev
->dev
,
608 "power regulator never stabilized");
609 writeb(0, slot
->host
->ioaddr
+ SYSKT_POWER_CMD
);
616 static const struct sdhci_pci_fixes sdhci_syskt
= {
617 .quirks
= SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER
,
618 .probe
= syskt_probe
,
619 .probe_slot
= syskt_probe_slot
,
622 static int via_probe(struct sdhci_pci_chip
*chip
)
624 if (chip
->pdev
->revision
== 0x10)
625 chip
->quirks
|= SDHCI_QUIRK_DELAY_AFTER_POWER
;
630 static const struct sdhci_pci_fixes sdhci_via
= {
634 static const struct pci_device_id pci_ids
[] __devinitdata
= {
636 .vendor
= PCI_VENDOR_ID_RICOH
,
637 .device
= PCI_DEVICE_ID_RICOH_R5C822
,
638 .subvendor
= PCI_ANY_ID
,
639 .subdevice
= PCI_ANY_ID
,
640 .driver_data
= (kernel_ulong_t
)&sdhci_ricoh
,
644 .vendor
= PCI_VENDOR_ID_RICOH
,
646 .subvendor
= PCI_ANY_ID
,
647 .subdevice
= PCI_ANY_ID
,
648 .driver_data
= (kernel_ulong_t
)&sdhci_ricoh_mmc
,
652 .vendor
= PCI_VENDOR_ID_RICOH
,
654 .subvendor
= PCI_ANY_ID
,
655 .subdevice
= PCI_ANY_ID
,
656 .driver_data
= (kernel_ulong_t
)&sdhci_ricoh_mmc
,
660 .vendor
= PCI_VENDOR_ID_RICOH
,
662 .subvendor
= PCI_ANY_ID
,
663 .subdevice
= PCI_ANY_ID
,
664 .driver_data
= (kernel_ulong_t
)&sdhci_ricoh_mmc
,
668 .vendor
= PCI_VENDOR_ID_ENE
,
669 .device
= PCI_DEVICE_ID_ENE_CB712_SD
,
670 .subvendor
= PCI_ANY_ID
,
671 .subdevice
= PCI_ANY_ID
,
672 .driver_data
= (kernel_ulong_t
)&sdhci_ene_712
,
676 .vendor
= PCI_VENDOR_ID_ENE
,
677 .device
= PCI_DEVICE_ID_ENE_CB712_SD_2
,
678 .subvendor
= PCI_ANY_ID
,
679 .subdevice
= PCI_ANY_ID
,
680 .driver_data
= (kernel_ulong_t
)&sdhci_ene_712
,
684 .vendor
= PCI_VENDOR_ID_ENE
,
685 .device
= PCI_DEVICE_ID_ENE_CB714_SD
,
686 .subvendor
= PCI_ANY_ID
,
687 .subdevice
= PCI_ANY_ID
,
688 .driver_data
= (kernel_ulong_t
)&sdhci_ene_714
,
692 .vendor
= PCI_VENDOR_ID_ENE
,
693 .device
= PCI_DEVICE_ID_ENE_CB714_SD_2
,
694 .subvendor
= PCI_ANY_ID
,
695 .subdevice
= PCI_ANY_ID
,
696 .driver_data
= (kernel_ulong_t
)&sdhci_ene_714
,
700 .vendor
= PCI_VENDOR_ID_MARVELL
,
701 .device
= PCI_DEVICE_ID_MARVELL_88ALP01_SD
,
702 .subvendor
= PCI_ANY_ID
,
703 .subdevice
= PCI_ANY_ID
,
704 .driver_data
= (kernel_ulong_t
)&sdhci_cafe
,
708 .vendor
= PCI_VENDOR_ID_JMICRON
,
709 .device
= PCI_DEVICE_ID_JMICRON_JMB38X_SD
,
710 .subvendor
= PCI_ANY_ID
,
711 .subdevice
= PCI_ANY_ID
,
712 .driver_data
= (kernel_ulong_t
)&sdhci_jmicron
,
716 .vendor
= PCI_VENDOR_ID_JMICRON
,
717 .device
= PCI_DEVICE_ID_JMICRON_JMB38X_MMC
,
718 .subvendor
= PCI_ANY_ID
,
719 .subdevice
= PCI_ANY_ID
,
720 .driver_data
= (kernel_ulong_t
)&sdhci_jmicron
,
724 .vendor
= PCI_VENDOR_ID_JMICRON
,
725 .device
= PCI_DEVICE_ID_JMICRON_JMB388_SD
,
726 .subvendor
= PCI_ANY_ID
,
727 .subdevice
= PCI_ANY_ID
,
728 .driver_data
= (kernel_ulong_t
)&sdhci_jmicron
,
732 .vendor
= PCI_VENDOR_ID_JMICRON
,
733 .device
= PCI_DEVICE_ID_JMICRON_JMB388_ESD
,
734 .subvendor
= PCI_ANY_ID
,
735 .subdevice
= PCI_ANY_ID
,
736 .driver_data
= (kernel_ulong_t
)&sdhci_jmicron
,
740 .vendor
= PCI_VENDOR_ID_SYSKONNECT
,
742 .subvendor
= PCI_ANY_ID
,
743 .subdevice
= PCI_ANY_ID
,
744 .driver_data
= (kernel_ulong_t
)&sdhci_syskt
,
748 .vendor
= PCI_VENDOR_ID_VIA
,
750 .subvendor
= PCI_ANY_ID
,
751 .subdevice
= PCI_ANY_ID
,
752 .driver_data
= (kernel_ulong_t
)&sdhci_via
,
756 .vendor
= PCI_VENDOR_ID_INTEL
,
757 .device
= PCI_DEVICE_ID_INTEL_MRST_SD0
,
758 .subvendor
= PCI_ANY_ID
,
759 .subdevice
= PCI_ANY_ID
,
760 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mrst_hc0
,
764 .vendor
= PCI_VENDOR_ID_INTEL
,
765 .device
= PCI_DEVICE_ID_INTEL_MRST_SD1
,
766 .subvendor
= PCI_ANY_ID
,
767 .subdevice
= PCI_ANY_ID
,
768 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mrst_hc1_hc2
,
772 .vendor
= PCI_VENDOR_ID_INTEL
,
773 .device
= PCI_DEVICE_ID_INTEL_MRST_SD2
,
774 .subvendor
= PCI_ANY_ID
,
775 .subdevice
= PCI_ANY_ID
,
776 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mrst_hc1_hc2
,
780 .vendor
= PCI_VENDOR_ID_INTEL
,
781 .device
= PCI_DEVICE_ID_INTEL_MFD_SD
,
782 .subvendor
= PCI_ANY_ID
,
783 .subdevice
= PCI_ANY_ID
,
784 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_sd
,
788 .vendor
= PCI_VENDOR_ID_INTEL
,
789 .device
= PCI_DEVICE_ID_INTEL_MFD_SDIO1
,
790 .subvendor
= PCI_ANY_ID
,
791 .subdevice
= PCI_ANY_ID
,
792 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_sdio
,
796 .vendor
= PCI_VENDOR_ID_INTEL
,
797 .device
= PCI_DEVICE_ID_INTEL_MFD_SDIO2
,
798 .subvendor
= PCI_ANY_ID
,
799 .subdevice
= PCI_ANY_ID
,
800 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_sdio
,
804 .vendor
= PCI_VENDOR_ID_INTEL
,
805 .device
= PCI_DEVICE_ID_INTEL_MFD_EMMC0
,
806 .subvendor
= PCI_ANY_ID
,
807 .subdevice
= PCI_ANY_ID
,
808 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_emmc
,
812 .vendor
= PCI_VENDOR_ID_INTEL
,
813 .device
= PCI_DEVICE_ID_INTEL_MFD_EMMC1
,
814 .subvendor
= PCI_ANY_ID
,
815 .subdevice
= PCI_ANY_ID
,
816 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_emmc
,
820 .vendor
= PCI_VENDOR_ID_O2
,
821 .device
= PCI_DEVICE_ID_O2_8120
,
822 .subvendor
= PCI_ANY_ID
,
823 .subdevice
= PCI_ANY_ID
,
824 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
828 .vendor
= PCI_VENDOR_ID_O2
,
829 .device
= PCI_DEVICE_ID_O2_8220
,
830 .subvendor
= PCI_ANY_ID
,
831 .subdevice
= PCI_ANY_ID
,
832 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
836 .vendor
= PCI_VENDOR_ID_O2
,
837 .device
= PCI_DEVICE_ID_O2_8221
,
838 .subvendor
= PCI_ANY_ID
,
839 .subdevice
= PCI_ANY_ID
,
840 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
844 .vendor
= PCI_VENDOR_ID_O2
,
845 .device
= PCI_DEVICE_ID_O2_8320
,
846 .subvendor
= PCI_ANY_ID
,
847 .subdevice
= PCI_ANY_ID
,
848 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
852 .vendor
= PCI_VENDOR_ID_O2
,
853 .device
= PCI_DEVICE_ID_O2_8321
,
854 .subvendor
= PCI_ANY_ID
,
855 .subdevice
= PCI_ANY_ID
,
856 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
859 { /* Generic SD host controller */
860 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI
<< 8), 0xFFFF00)
863 { /* end: all zeroes */ },
866 MODULE_DEVICE_TABLE(pci
, pci_ids
);
868 /*****************************************************************************\
870 * SDHCI core callbacks *
872 \*****************************************************************************/
874 static int sdhci_pci_enable_dma(struct sdhci_host
*host
)
876 struct sdhci_pci_slot
*slot
;
877 struct pci_dev
*pdev
;
880 slot
= sdhci_priv(host
);
881 pdev
= slot
->chip
->pdev
;
883 if (((pdev
->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI
<< 8)) &&
884 ((pdev
->class & 0x0000FF) != PCI_SDHCI_IFDMA
) &&
885 (host
->flags
& SDHCI_USE_SDMA
)) {
886 dev_warn(&pdev
->dev
, "Will use DMA mode even though HW "
887 "doesn't fully claim to support it.\n");
890 ret
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
894 pci_set_master(pdev
);
899 static int sdhci_pci_8bit_width(struct sdhci_host
*host
, int width
)
903 ctrl
= sdhci_readb(host
, SDHCI_HOST_CONTROL
);
906 case MMC_BUS_WIDTH_8
:
907 ctrl
|= SDHCI_CTRL_8BITBUS
;
908 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
910 case MMC_BUS_WIDTH_4
:
911 ctrl
|= SDHCI_CTRL_4BITBUS
;
912 ctrl
&= ~SDHCI_CTRL_8BITBUS
;
915 ctrl
&= ~(SDHCI_CTRL_8BITBUS
| SDHCI_CTRL_4BITBUS
);
919 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
924 static void sdhci_pci_hw_reset(struct sdhci_host
*host
)
926 struct sdhci_pci_slot
*slot
= sdhci_priv(host
);
927 int rst_n_gpio
= slot
->rst_n_gpio
;
929 if (!gpio_is_valid(rst_n_gpio
))
931 gpio_set_value_cansleep(rst_n_gpio
, 0);
932 /* For eMMC, minimum is 1us but give it 10us for good measure */
934 gpio_set_value_cansleep(rst_n_gpio
, 1);
935 /* For eMMC, minimum is 200us but give it 300us for good measure */
936 usleep_range(300, 1000);
939 static struct sdhci_ops sdhci_pci_ops
= {
940 .enable_dma
= sdhci_pci_enable_dma
,
941 .platform_8bit_width
= sdhci_pci_8bit_width
,
942 .hw_reset
= sdhci_pci_hw_reset
,
945 /*****************************************************************************\
949 \*****************************************************************************/
953 static int sdhci_pci_suspend(struct device
*dev
)
955 struct pci_dev
*pdev
= to_pci_dev(dev
);
956 struct sdhci_pci_chip
*chip
;
957 struct sdhci_pci_slot
*slot
;
958 mmc_pm_flag_t slot_pm_flags
;
959 mmc_pm_flag_t pm_flags
= 0;
962 chip
= pci_get_drvdata(pdev
);
966 for (i
= 0; i
< chip
->num_slots
; i
++) {
967 slot
= chip
->slots
[i
];
971 ret
= sdhci_suspend_host(slot
->host
);
974 goto err_pci_suspend
;
976 slot_pm_flags
= slot
->host
->mmc
->pm_flags
;
977 if (slot_pm_flags
& MMC_PM_WAKE_SDIO_IRQ
)
978 sdhci_enable_irq_wakeups(slot
->host
);
980 pm_flags
|= slot_pm_flags
;
983 if (chip
->fixes
&& chip
->fixes
->suspend
) {
984 ret
= chip
->fixes
->suspend(chip
);
986 goto err_pci_suspend
;
989 pci_save_state(pdev
);
990 if (pm_flags
& MMC_PM_KEEP_POWER
) {
991 if (pm_flags
& MMC_PM_WAKE_SDIO_IRQ
) {
992 pci_pme_active(pdev
, true);
993 pci_enable_wake(pdev
, PCI_D3hot
, 1);
995 pci_set_power_state(pdev
, PCI_D3hot
);
997 pci_enable_wake(pdev
, PCI_D3hot
, 0);
998 pci_disable_device(pdev
);
999 pci_set_power_state(pdev
, PCI_D3hot
);
1006 sdhci_resume_host(chip
->slots
[i
]->host
);
1010 static int sdhci_pci_resume(struct device
*dev
)
1012 struct pci_dev
*pdev
= to_pci_dev(dev
);
1013 struct sdhci_pci_chip
*chip
;
1014 struct sdhci_pci_slot
*slot
;
1017 chip
= pci_get_drvdata(pdev
);
1021 pci_set_power_state(pdev
, PCI_D0
);
1022 pci_restore_state(pdev
);
1023 ret
= pci_enable_device(pdev
);
1027 if (chip
->fixes
&& chip
->fixes
->resume
) {
1028 ret
= chip
->fixes
->resume(chip
);
1033 for (i
= 0; i
< chip
->num_slots
; i
++) {
1034 slot
= chip
->slots
[i
];
1038 ret
= sdhci_resume_host(slot
->host
);
1046 #else /* CONFIG_PM */
1048 #define sdhci_pci_suspend NULL
1049 #define sdhci_pci_resume NULL
1051 #endif /* CONFIG_PM */
1053 #ifdef CONFIG_PM_RUNTIME
1055 static int sdhci_pci_runtime_suspend(struct device
*dev
)
1057 struct pci_dev
*pdev
= container_of(dev
, struct pci_dev
, dev
);
1058 struct sdhci_pci_chip
*chip
;
1059 struct sdhci_pci_slot
*slot
;
1062 chip
= pci_get_drvdata(pdev
);
1066 for (i
= 0; i
< chip
->num_slots
; i
++) {
1067 slot
= chip
->slots
[i
];
1071 ret
= sdhci_runtime_suspend_host(slot
->host
);
1074 goto err_pci_runtime_suspend
;
1077 if (chip
->fixes
&& chip
->fixes
->suspend
) {
1078 ret
= chip
->fixes
->suspend(chip
);
1080 goto err_pci_runtime_suspend
;
1085 err_pci_runtime_suspend
:
1087 sdhci_runtime_resume_host(chip
->slots
[i
]->host
);
1091 static int sdhci_pci_runtime_resume(struct device
*dev
)
1093 struct pci_dev
*pdev
= container_of(dev
, struct pci_dev
, dev
);
1094 struct sdhci_pci_chip
*chip
;
1095 struct sdhci_pci_slot
*slot
;
1098 chip
= pci_get_drvdata(pdev
);
1102 if (chip
->fixes
&& chip
->fixes
->resume
) {
1103 ret
= chip
->fixes
->resume(chip
);
1108 for (i
= 0; i
< chip
->num_slots
; i
++) {
1109 slot
= chip
->slots
[i
];
1113 ret
= sdhci_runtime_resume_host(slot
->host
);
1121 static int sdhci_pci_runtime_idle(struct device
*dev
)
1128 #define sdhci_pci_runtime_suspend NULL
1129 #define sdhci_pci_runtime_resume NULL
1130 #define sdhci_pci_runtime_idle NULL
1134 static const struct dev_pm_ops sdhci_pci_pm_ops
= {
1135 .suspend
= sdhci_pci_suspend
,
1136 .resume
= sdhci_pci_resume
,
1137 .runtime_suspend
= sdhci_pci_runtime_suspend
,
1138 .runtime_resume
= sdhci_pci_runtime_resume
,
1139 .runtime_idle
= sdhci_pci_runtime_idle
,
1142 /*****************************************************************************\
1144 * Device probing/removal *
1146 \*****************************************************************************/
1148 static struct sdhci_pci_slot
* __devinit
sdhci_pci_probe_slot(
1149 struct pci_dev
*pdev
, struct sdhci_pci_chip
*chip
, int first_bar
,
1152 struct sdhci_pci_slot
*slot
;
1153 struct sdhci_host
*host
;
1154 int ret
, bar
= first_bar
+ slotno
;
1156 if (!(pci_resource_flags(pdev
, bar
) & IORESOURCE_MEM
)) {
1157 dev_err(&pdev
->dev
, "BAR %d is not iomem. Aborting.\n", bar
);
1158 return ERR_PTR(-ENODEV
);
1161 if (pci_resource_len(pdev
, bar
) != 0x100) {
1162 dev_err(&pdev
->dev
, "Invalid iomem size. You may "
1163 "experience problems.\n");
1166 if ((pdev
->class & 0x0000FF) == PCI_SDHCI_IFVENDOR
) {
1167 dev_err(&pdev
->dev
, "Vendor specific interface. Aborting.\n");
1168 return ERR_PTR(-ENODEV
);
1171 if ((pdev
->class & 0x0000FF) > PCI_SDHCI_IFVENDOR
) {
1172 dev_err(&pdev
->dev
, "Unknown interface. Aborting.\n");
1173 return ERR_PTR(-ENODEV
);
1176 host
= sdhci_alloc_host(&pdev
->dev
, sizeof(struct sdhci_pci_slot
));
1178 dev_err(&pdev
->dev
, "cannot allocate host\n");
1179 return ERR_CAST(host
);
1182 slot
= sdhci_priv(host
);
1186 slot
->pci_bar
= bar
;
1187 slot
->rst_n_gpio
= -EINVAL
;
1188 slot
->cd_gpio
= -EINVAL
;
1190 /* Retrieve platform data if there is any */
1191 if (*sdhci_pci_get_data
)
1192 slot
->data
= sdhci_pci_get_data(pdev
, slotno
);
1195 if (slot
->data
->setup
) {
1196 ret
= slot
->data
->setup(slot
->data
);
1198 dev_err(&pdev
->dev
, "platform setup failed\n");
1202 slot
->rst_n_gpio
= slot
->data
->rst_n_gpio
;
1203 slot
->cd_gpio
= slot
->data
->cd_gpio
;
1206 host
->hw_name
= "PCI";
1207 host
->ops
= &sdhci_pci_ops
;
1208 host
->quirks
= chip
->quirks
;
1210 host
->irq
= pdev
->irq
;
1212 ret
= pci_request_region(pdev
, bar
, mmc_hostname(host
->mmc
));
1214 dev_err(&pdev
->dev
, "cannot request region\n");
1218 host
->ioaddr
= pci_ioremap_bar(pdev
, bar
);
1219 if (!host
->ioaddr
) {
1220 dev_err(&pdev
->dev
, "failed to remap registers\n");
1225 if (chip
->fixes
&& chip
->fixes
->probe_slot
) {
1226 ret
= chip
->fixes
->probe_slot(slot
);
1231 if (gpio_is_valid(slot
->rst_n_gpio
)) {
1232 if (!gpio_request(slot
->rst_n_gpio
, "eMMC_reset")) {
1233 gpio_direction_output(slot
->rst_n_gpio
, 1);
1234 slot
->host
->mmc
->caps
|= MMC_CAP_HW_RESET
;
1236 dev_warn(&pdev
->dev
, "failed to request rst_n_gpio\n");
1237 slot
->rst_n_gpio
= -EINVAL
;
1241 host
->mmc
->pm_caps
= MMC_PM_KEEP_POWER
| MMC_PM_WAKE_SDIO_IRQ
;
1243 ret
= sdhci_add_host(host
);
1247 sdhci_pci_add_own_cd(slot
);
1252 if (gpio_is_valid(slot
->rst_n_gpio
))
1253 gpio_free(slot
->rst_n_gpio
);
1255 if (chip
->fixes
&& chip
->fixes
->remove_slot
)
1256 chip
->fixes
->remove_slot(slot
, 0);
1259 iounmap(host
->ioaddr
);
1262 pci_release_region(pdev
, bar
);
1265 if (slot
->data
&& slot
->data
->cleanup
)
1266 slot
->data
->cleanup(slot
->data
);
1269 sdhci_free_host(host
);
1271 return ERR_PTR(ret
);
1274 static void sdhci_pci_remove_slot(struct sdhci_pci_slot
*slot
)
1279 sdhci_pci_remove_own_cd(slot
);
1282 scratch
= readl(slot
->host
->ioaddr
+ SDHCI_INT_STATUS
);
1283 if (scratch
== (u32
)-1)
1286 sdhci_remove_host(slot
->host
, dead
);
1288 if (gpio_is_valid(slot
->rst_n_gpio
))
1289 gpio_free(slot
->rst_n_gpio
);
1291 if (slot
->chip
->fixes
&& slot
->chip
->fixes
->remove_slot
)
1292 slot
->chip
->fixes
->remove_slot(slot
, dead
);
1294 if (slot
->data
&& slot
->data
->cleanup
)
1295 slot
->data
->cleanup(slot
->data
);
1297 pci_release_region(slot
->chip
->pdev
, slot
->pci_bar
);
1299 sdhci_free_host(slot
->host
);
1302 static void __devinit
sdhci_pci_runtime_pm_allow(struct device
*dev
)
1304 pm_runtime_put_noidle(dev
);
1305 pm_runtime_allow(dev
);
1306 pm_runtime_set_autosuspend_delay(dev
, 50);
1307 pm_runtime_use_autosuspend(dev
);
1308 pm_suspend_ignore_children(dev
, 1);
1311 static void __devexit
sdhci_pci_runtime_pm_forbid(struct device
*dev
)
1313 pm_runtime_forbid(dev
);
1314 pm_runtime_get_noresume(dev
);
1317 static int __devinit
sdhci_pci_probe(struct pci_dev
*pdev
,
1318 const struct pci_device_id
*ent
)
1320 struct sdhci_pci_chip
*chip
;
1321 struct sdhci_pci_slot
*slot
;
1323 u8 slots
, first_bar
;
1326 BUG_ON(pdev
== NULL
);
1327 BUG_ON(ent
== NULL
);
1329 dev_info(&pdev
->dev
, "SDHCI controller found [%04x:%04x] (rev %x)\n",
1330 (int)pdev
->vendor
, (int)pdev
->device
, (int)pdev
->revision
);
1332 ret
= pci_read_config_byte(pdev
, PCI_SLOT_INFO
, &slots
);
1336 slots
= PCI_SLOT_INFO_SLOTS(slots
) + 1;
1337 dev_dbg(&pdev
->dev
, "found %d slot(s)\n", slots
);
1341 BUG_ON(slots
> MAX_SLOTS
);
1343 ret
= pci_read_config_byte(pdev
, PCI_SLOT_INFO
, &first_bar
);
1347 first_bar
&= PCI_SLOT_INFO_FIRST_BAR_MASK
;
1349 if (first_bar
> 5) {
1350 dev_err(&pdev
->dev
, "Invalid first BAR. Aborting.\n");
1354 ret
= pci_enable_device(pdev
);
1358 chip
= kzalloc(sizeof(struct sdhci_pci_chip
), GFP_KERNEL
);
1365 chip
->fixes
= (const struct sdhci_pci_fixes
*)ent
->driver_data
;
1367 chip
->quirks
= chip
->fixes
->quirks
;
1368 chip
->allow_runtime_pm
= chip
->fixes
->allow_runtime_pm
;
1370 chip
->num_slots
= slots
;
1372 pci_set_drvdata(pdev
, chip
);
1374 if (chip
->fixes
&& chip
->fixes
->probe
) {
1375 ret
= chip
->fixes
->probe(chip
);
1380 slots
= chip
->num_slots
; /* Quirk may have changed this */
1382 for (i
= 0; i
< slots
; i
++) {
1383 slot
= sdhci_pci_probe_slot(pdev
, chip
, first_bar
, i
);
1385 for (i
--; i
>= 0; i
--)
1386 sdhci_pci_remove_slot(chip
->slots
[i
]);
1387 ret
= PTR_ERR(slot
);
1391 chip
->slots
[i
] = slot
;
1394 if (chip
->allow_runtime_pm
)
1395 sdhci_pci_runtime_pm_allow(&pdev
->dev
);
1400 pci_set_drvdata(pdev
, NULL
);
1404 pci_disable_device(pdev
);
1408 static void __devexit
sdhci_pci_remove(struct pci_dev
*pdev
)
1411 struct sdhci_pci_chip
*chip
;
1413 chip
= pci_get_drvdata(pdev
);
1416 if (chip
->allow_runtime_pm
)
1417 sdhci_pci_runtime_pm_forbid(&pdev
->dev
);
1419 for (i
= 0; i
< chip
->num_slots
; i
++)
1420 sdhci_pci_remove_slot(chip
->slots
[i
]);
1422 pci_set_drvdata(pdev
, NULL
);
1426 pci_disable_device(pdev
);
1429 static struct pci_driver sdhci_driver
= {
1430 .name
= "sdhci-pci",
1431 .id_table
= pci_ids
,
1432 .probe
= sdhci_pci_probe
,
1433 .remove
= __devexit_p(sdhci_pci_remove
),
1435 .pm
= &sdhci_pci_pm_ops
1439 /*****************************************************************************\
1441 * Driver init/exit *
1443 \*****************************************************************************/
1445 static int __init
sdhci_drv_init(void)
1447 return pci_register_driver(&sdhci_driver
);
1450 static void __exit
sdhci_drv_exit(void)
1452 pci_unregister_driver(&sdhci_driver
);
1455 module_init(sdhci_drv_init
);
1456 module_exit(sdhci_drv_exit
);
1458 MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
1459 MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1460 MODULE_LICENSE("GPL");