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/pci.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/slab.h>
20 #include <linux/device.h>
21 #include <linux/mmc/host.h>
22 #include <linux/scatterlist.h>
31 #define PCI_SDHCI_IFPIO 0x00
32 #define PCI_SDHCI_IFDMA 0x01
33 #define PCI_SDHCI_IFVENDOR 0x02
35 #define PCI_SLOT_INFO 0x40 /* 8 bits */
36 #define PCI_SLOT_INFO_SLOTS(x) ((x >> 4) & 7)
37 #define PCI_SLOT_INFO_FIRST_BAR_MASK 0x07
41 struct sdhci_pci_chip
;
42 struct sdhci_pci_slot
;
44 struct sdhci_pci_fixes
{
47 int (*probe
) (struct sdhci_pci_chip
*);
49 int (*probe_slot
) (struct sdhci_pci_slot
*);
50 void (*remove_slot
) (struct sdhci_pci_slot
*, int);
52 int (*suspend
) (struct sdhci_pci_chip
*,
54 int (*resume
) (struct sdhci_pci_chip
*);
57 struct sdhci_pci_slot
{
58 struct sdhci_pci_chip
*chip
;
59 struct sdhci_host
*host
;
64 struct sdhci_pci_chip
{
68 const struct sdhci_pci_fixes
*fixes
;
70 int num_slots
; /* Slots on controller */
71 struct sdhci_pci_slot
*slots
[MAX_SLOTS
]; /* Pointers to host slots */
75 /*****************************************************************************\
77 * Hardware specific quirk handling *
79 \*****************************************************************************/
81 static int ricoh_probe(struct sdhci_pci_chip
*chip
)
83 if (chip
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_SAMSUNG
||
84 chip
->pdev
->subsystem_vendor
== PCI_VENDOR_ID_SONY
)
85 chip
->quirks
|= SDHCI_QUIRK_NO_CARD_NO_RESET
;
89 static int ricoh_mmc_probe_slot(struct sdhci_pci_slot
*slot
)
92 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT
)
93 & SDHCI_TIMEOUT_CLK_MASK
) |
95 ((0x21 << SDHCI_CLOCK_BASE_SHIFT
)
96 & SDHCI_CLOCK_BASE_MASK
) |
98 SDHCI_TIMEOUT_CLK_UNIT
|
104 static int ricoh_mmc_resume(struct sdhci_pci_chip
*chip
)
106 /* Apply a delay to allow controller to settle */
107 /* Otherwise it becomes confused if card state changed
113 static const struct sdhci_pci_fixes sdhci_ricoh
= {
114 .probe
= ricoh_probe
,
115 .quirks
= SDHCI_QUIRK_32BIT_DMA_ADDR
|
116 SDHCI_QUIRK_FORCE_DMA
|
117 SDHCI_QUIRK_CLOCK_BEFORE_RESET
,
120 static const struct sdhci_pci_fixes sdhci_ricoh_mmc
= {
121 .probe_slot
= ricoh_mmc_probe_slot
,
122 .resume
= ricoh_mmc_resume
,
123 .quirks
= SDHCI_QUIRK_32BIT_DMA_ADDR
|
124 SDHCI_QUIRK_CLOCK_BEFORE_RESET
|
125 SDHCI_QUIRK_NO_CARD_NO_RESET
|
126 SDHCI_QUIRK_MISSING_CAPS
129 static const struct sdhci_pci_fixes sdhci_ene_712
= {
130 .quirks
= SDHCI_QUIRK_SINGLE_POWER_WRITE
|
131 SDHCI_QUIRK_BROKEN_DMA
,
134 static const struct sdhci_pci_fixes sdhci_ene_714
= {
135 .quirks
= SDHCI_QUIRK_SINGLE_POWER_WRITE
|
136 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS
|
137 SDHCI_QUIRK_BROKEN_DMA
,
140 static const struct sdhci_pci_fixes sdhci_cafe
= {
141 .quirks
= SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER
|
142 SDHCI_QUIRK_NO_BUSY_IRQ
|
143 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
,
146 static int mrst_hc_probe_slot(struct sdhci_pci_slot
*slot
)
148 slot
->host
->mmc
->caps
|= MMC_CAP_8_BIT_DATA
;
153 * ADMA operation is disabled for Moorestown platform due to
156 static int mrst_hc_probe(struct sdhci_pci_chip
*chip
)
159 * slots number is fixed here for MRST as SDIO3/5 are never used and
160 * have hardware bugs.
166 static int mfd_emmc_probe_slot(struct sdhci_pci_slot
*slot
)
168 slot
->host
->mmc
->caps
|= MMC_CAP_8_BIT_DATA
;
172 static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0
= {
173 .quirks
= SDHCI_QUIRK_BROKEN_ADMA
| SDHCI_QUIRK_NO_HISPD_BIT
,
174 .probe_slot
= mrst_hc_probe_slot
,
177 static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2
= {
178 .quirks
= SDHCI_QUIRK_BROKEN_ADMA
| SDHCI_QUIRK_NO_HISPD_BIT
,
179 .probe
= mrst_hc_probe
,
182 static const struct sdhci_pci_fixes sdhci_intel_mfd_sd
= {
183 .quirks
= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
,
186 static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio
= {
187 .quirks
= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
,
190 static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc
= {
191 .quirks
= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
,
192 .probe_slot
= mfd_emmc_probe_slot
,
195 /* O2Micro extra registers */
196 #define O2_SD_LOCK_WP 0xD3
197 #define O2_SD_MULTI_VCC3V 0xEE
198 #define O2_SD_CLKREQ 0xEC
199 #define O2_SD_CAPS 0xE0
200 #define O2_SD_ADMA1 0xE2
201 #define O2_SD_ADMA2 0xE7
202 #define O2_SD_INF_MOD 0xF1
204 static int o2_probe(struct sdhci_pci_chip
*chip
)
209 switch (chip
->pdev
->device
) {
210 case PCI_DEVICE_ID_O2_8220
:
211 case PCI_DEVICE_ID_O2_8221
:
212 case PCI_DEVICE_ID_O2_8320
:
213 case PCI_DEVICE_ID_O2_8321
:
214 /* This extra setup is required due to broken ADMA. */
215 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_LOCK_WP
, &scratch
);
219 pci_write_config_byte(chip
->pdev
, O2_SD_LOCK_WP
, scratch
);
221 /* Set Multi 3 to VCC3V# */
222 pci_write_config_byte(chip
->pdev
, O2_SD_MULTI_VCC3V
, 0x08);
224 /* Disable CLK_REQ# support after media DET */
225 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_CLKREQ
, &scratch
);
229 pci_write_config_byte(chip
->pdev
, O2_SD_CLKREQ
, scratch
);
231 /* Choose capabilities, enable SDMA. We have to write 0x01
232 * to the capabilities register first to unlock it.
234 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_CAPS
, &scratch
);
238 pci_write_config_byte(chip
->pdev
, O2_SD_CAPS
, scratch
);
239 pci_write_config_byte(chip
->pdev
, O2_SD_CAPS
, 0x73);
241 /* Disable ADMA1/2 */
242 pci_write_config_byte(chip
->pdev
, O2_SD_ADMA1
, 0x39);
243 pci_write_config_byte(chip
->pdev
, O2_SD_ADMA2
, 0x08);
245 /* Disable the infinite transfer mode */
246 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_INF_MOD
, &scratch
);
250 pci_write_config_byte(chip
->pdev
, O2_SD_INF_MOD
, scratch
);
253 ret
= pci_read_config_byte(chip
->pdev
, O2_SD_LOCK_WP
, &scratch
);
257 pci_write_config_byte(chip
->pdev
, O2_SD_LOCK_WP
, scratch
);
263 static int jmicron_pmos(struct sdhci_pci_chip
*chip
, int on
)
268 ret
= pci_read_config_byte(chip
->pdev
, 0xAE, &scratch
);
273 * Turn PMOS on [bit 0], set over current detection to 2.4 V
274 * [bit 1:2] and enable over current debouncing [bit 6].
281 ret
= pci_write_config_byte(chip
->pdev
, 0xAE, scratch
);
288 static int jmicron_probe(struct sdhci_pci_chip
*chip
)
293 if (chip
->pdev
->revision
== 0) {
294 chip
->quirks
|= SDHCI_QUIRK_32BIT_DMA_ADDR
|
295 SDHCI_QUIRK_32BIT_DMA_SIZE
|
296 SDHCI_QUIRK_32BIT_ADMA_SIZE
|
297 SDHCI_QUIRK_RESET_AFTER_REQUEST
|
298 SDHCI_QUIRK_BROKEN_SMALL_PIO
;
302 * JMicron chips can have two interfaces to the same hardware
303 * in order to work around limitations in Microsoft's driver.
304 * We need to make sure we only bind to one of them.
306 * This code assumes two things:
308 * 1. The PCI code adds subfunctions in order.
310 * 2. The MMC interface has a lower subfunction number
311 * than the SD interface.
313 if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_SD
)
314 mmcdev
= PCI_DEVICE_ID_JMICRON_JMB38X_MMC
;
315 else if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_SD
)
316 mmcdev
= PCI_DEVICE_ID_JMICRON_JMB388_ESD
;
319 struct pci_dev
*sd_dev
;
322 while ((sd_dev
= pci_get_device(PCI_VENDOR_ID_JMICRON
,
323 mmcdev
, sd_dev
)) != NULL
) {
324 if ((PCI_SLOT(chip
->pdev
->devfn
) ==
325 PCI_SLOT(sd_dev
->devfn
)) &&
326 (chip
->pdev
->bus
== sd_dev
->bus
))
332 dev_info(&chip
->pdev
->dev
, "Refusing to bind to "
333 "secondary interface.\n");
339 * JMicron chips need a bit of a nudge to enable the power
342 ret
= jmicron_pmos(chip
, 1);
344 dev_err(&chip
->pdev
->dev
, "Failure enabling card power\n");
348 /* quirk for unsable RO-detection on JM388 chips */
349 if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_SD
||
350 chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
)
351 chip
->quirks
|= SDHCI_QUIRK_UNSTABLE_RO_DETECT
;
356 static void jmicron_enable_mmc(struct sdhci_host
*host
, int on
)
360 scratch
= readb(host
->ioaddr
+ 0xC0);
367 writeb(scratch
, host
->ioaddr
+ 0xC0);
370 static int jmicron_probe_slot(struct sdhci_pci_slot
*slot
)
372 if (slot
->chip
->pdev
->revision
== 0) {
375 version
= readl(slot
->host
->ioaddr
+ SDHCI_HOST_VERSION
);
376 version
= (version
& SDHCI_VENDOR_VER_MASK
) >>
377 SDHCI_VENDOR_VER_SHIFT
;
380 * Older versions of the chip have lots of nasty glitches
381 * in the ADMA engine. It's best just to avoid it
385 slot
->host
->quirks
|= SDHCI_QUIRK_BROKEN_ADMA
;
388 /* JM388 MMC doesn't support 1.8V while SD supports it */
389 if (slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
) {
390 slot
->host
->ocr_avail_sd
= MMC_VDD_32_33
| MMC_VDD_33_34
|
391 MMC_VDD_29_30
| MMC_VDD_30_31
|
392 MMC_VDD_165_195
; /* allow 1.8V */
393 slot
->host
->ocr_avail_mmc
= MMC_VDD_32_33
| MMC_VDD_33_34
|
394 MMC_VDD_29_30
| MMC_VDD_30_31
; /* no 1.8V for MMC */
398 * The secondary interface requires a bit set to get the
401 if (slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_MMC
||
402 slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
)
403 jmicron_enable_mmc(slot
->host
, 1);
405 slot
->host
->mmc
->caps
|= MMC_CAP_BUS_WIDTH_TEST
;
410 static void jmicron_remove_slot(struct sdhci_pci_slot
*slot
, int dead
)
415 if (slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_MMC
||
416 slot
->chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
)
417 jmicron_enable_mmc(slot
->host
, 0);
420 static int jmicron_suspend(struct sdhci_pci_chip
*chip
, pm_message_t state
)
424 if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_MMC
||
425 chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
) {
426 for (i
= 0; i
< chip
->num_slots
; i
++)
427 jmicron_enable_mmc(chip
->slots
[i
]->host
, 0);
433 static int jmicron_resume(struct sdhci_pci_chip
*chip
)
437 if (chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB38X_MMC
||
438 chip
->pdev
->device
== PCI_DEVICE_ID_JMICRON_JMB388_ESD
) {
439 for (i
= 0; i
< chip
->num_slots
; i
++)
440 jmicron_enable_mmc(chip
->slots
[i
]->host
, 1);
443 ret
= jmicron_pmos(chip
, 1);
445 dev_err(&chip
->pdev
->dev
, "Failure enabling card power\n");
452 static const struct sdhci_pci_fixes sdhci_o2
= {
456 static const struct sdhci_pci_fixes sdhci_jmicron
= {
457 .probe
= jmicron_probe
,
459 .probe_slot
= jmicron_probe_slot
,
460 .remove_slot
= jmicron_remove_slot
,
462 .suspend
= jmicron_suspend
,
463 .resume
= jmicron_resume
,
466 /* SysKonnect CardBus2SDIO extra registers */
467 #define SYSKT_CTRL 0x200
468 #define SYSKT_RDFIFO_STAT 0x204
469 #define SYSKT_WRFIFO_STAT 0x208
470 #define SYSKT_POWER_DATA 0x20c
471 #define SYSKT_POWER_330 0xef
472 #define SYSKT_POWER_300 0xf8
473 #define SYSKT_POWER_184 0xcc
474 #define SYSKT_POWER_CMD 0x20d
475 #define SYSKT_POWER_START (1 << 7)
476 #define SYSKT_POWER_STATUS 0x20e
477 #define SYSKT_POWER_STATUS_OK (1 << 0)
478 #define SYSKT_BOARD_REV 0x210
479 #define SYSKT_CHIP_REV 0x211
480 #define SYSKT_CONF_DATA 0x212
481 #define SYSKT_CONF_DATA_1V8 (1 << 2)
482 #define SYSKT_CONF_DATA_2V5 (1 << 1)
483 #define SYSKT_CONF_DATA_3V3 (1 << 0)
485 static int syskt_probe(struct sdhci_pci_chip
*chip
)
487 if ((chip
->pdev
->class & 0x0000FF) == PCI_SDHCI_IFVENDOR
) {
488 chip
->pdev
->class &= ~0x0000FF;
489 chip
->pdev
->class |= PCI_SDHCI_IFDMA
;
494 static int syskt_probe_slot(struct sdhci_pci_slot
*slot
)
498 u8 board_rev
= readb(slot
->host
->ioaddr
+ SYSKT_BOARD_REV
);
499 u8 chip_rev
= readb(slot
->host
->ioaddr
+ SYSKT_CHIP_REV
);
500 dev_info(&slot
->chip
->pdev
->dev
, "SysKonnect CardBus2SDIO, "
501 "board rev %d.%d, chip rev %d.%d\n",
502 board_rev
>> 4, board_rev
& 0xf,
503 chip_rev
>> 4, chip_rev
& 0xf);
504 if (chip_rev
>= 0x20)
505 slot
->host
->quirks
|= SDHCI_QUIRK_FORCE_DMA
;
507 writeb(SYSKT_POWER_330
, slot
->host
->ioaddr
+ SYSKT_POWER_DATA
);
508 writeb(SYSKT_POWER_START
, slot
->host
->ioaddr
+ SYSKT_POWER_CMD
);
510 tm
= 10; /* Wait max 1 ms */
512 ps
= readw(slot
->host
->ioaddr
+ SYSKT_POWER_STATUS
);
513 if (ps
& SYSKT_POWER_STATUS_OK
)
518 dev_err(&slot
->chip
->pdev
->dev
,
519 "power regulator never stabilized");
520 writeb(0, slot
->host
->ioaddr
+ SYSKT_POWER_CMD
);
527 static const struct sdhci_pci_fixes sdhci_syskt
= {
528 .quirks
= SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER
,
529 .probe
= syskt_probe
,
530 .probe_slot
= syskt_probe_slot
,
533 static int via_probe(struct sdhci_pci_chip
*chip
)
535 if (chip
->pdev
->revision
== 0x10)
536 chip
->quirks
|= SDHCI_QUIRK_DELAY_AFTER_POWER
;
541 static const struct sdhci_pci_fixes sdhci_via
= {
545 static const struct pci_device_id pci_ids
[] __devinitdata
= {
547 .vendor
= PCI_VENDOR_ID_RICOH
,
548 .device
= PCI_DEVICE_ID_RICOH_R5C822
,
549 .subvendor
= PCI_ANY_ID
,
550 .subdevice
= PCI_ANY_ID
,
551 .driver_data
= (kernel_ulong_t
)&sdhci_ricoh
,
555 .vendor
= PCI_VENDOR_ID_RICOH
,
557 .subvendor
= PCI_ANY_ID
,
558 .subdevice
= PCI_ANY_ID
,
559 .driver_data
= (kernel_ulong_t
)&sdhci_ricoh_mmc
,
563 .vendor
= PCI_VENDOR_ID_RICOH
,
565 .subvendor
= PCI_ANY_ID
,
566 .subdevice
= PCI_ANY_ID
,
567 .driver_data
= (kernel_ulong_t
)&sdhci_ricoh_mmc
,
571 .vendor
= PCI_VENDOR_ID_RICOH
,
573 .subvendor
= PCI_ANY_ID
,
574 .subdevice
= PCI_ANY_ID
,
575 .driver_data
= (kernel_ulong_t
)&sdhci_ricoh_mmc
,
579 .vendor
= PCI_VENDOR_ID_ENE
,
580 .device
= PCI_DEVICE_ID_ENE_CB712_SD
,
581 .subvendor
= PCI_ANY_ID
,
582 .subdevice
= PCI_ANY_ID
,
583 .driver_data
= (kernel_ulong_t
)&sdhci_ene_712
,
587 .vendor
= PCI_VENDOR_ID_ENE
,
588 .device
= PCI_DEVICE_ID_ENE_CB712_SD_2
,
589 .subvendor
= PCI_ANY_ID
,
590 .subdevice
= PCI_ANY_ID
,
591 .driver_data
= (kernel_ulong_t
)&sdhci_ene_712
,
595 .vendor
= PCI_VENDOR_ID_ENE
,
596 .device
= PCI_DEVICE_ID_ENE_CB714_SD
,
597 .subvendor
= PCI_ANY_ID
,
598 .subdevice
= PCI_ANY_ID
,
599 .driver_data
= (kernel_ulong_t
)&sdhci_ene_714
,
603 .vendor
= PCI_VENDOR_ID_ENE
,
604 .device
= PCI_DEVICE_ID_ENE_CB714_SD_2
,
605 .subvendor
= PCI_ANY_ID
,
606 .subdevice
= PCI_ANY_ID
,
607 .driver_data
= (kernel_ulong_t
)&sdhci_ene_714
,
611 .vendor
= PCI_VENDOR_ID_MARVELL
,
612 .device
= PCI_DEVICE_ID_MARVELL_88ALP01_SD
,
613 .subvendor
= PCI_ANY_ID
,
614 .subdevice
= PCI_ANY_ID
,
615 .driver_data
= (kernel_ulong_t
)&sdhci_cafe
,
619 .vendor
= PCI_VENDOR_ID_JMICRON
,
620 .device
= PCI_DEVICE_ID_JMICRON_JMB38X_SD
,
621 .subvendor
= PCI_ANY_ID
,
622 .subdevice
= PCI_ANY_ID
,
623 .driver_data
= (kernel_ulong_t
)&sdhci_jmicron
,
627 .vendor
= PCI_VENDOR_ID_JMICRON
,
628 .device
= PCI_DEVICE_ID_JMICRON_JMB38X_MMC
,
629 .subvendor
= PCI_ANY_ID
,
630 .subdevice
= PCI_ANY_ID
,
631 .driver_data
= (kernel_ulong_t
)&sdhci_jmicron
,
635 .vendor
= PCI_VENDOR_ID_JMICRON
,
636 .device
= PCI_DEVICE_ID_JMICRON_JMB388_SD
,
637 .subvendor
= PCI_ANY_ID
,
638 .subdevice
= PCI_ANY_ID
,
639 .driver_data
= (kernel_ulong_t
)&sdhci_jmicron
,
643 .vendor
= PCI_VENDOR_ID_JMICRON
,
644 .device
= PCI_DEVICE_ID_JMICRON_JMB388_ESD
,
645 .subvendor
= PCI_ANY_ID
,
646 .subdevice
= PCI_ANY_ID
,
647 .driver_data
= (kernel_ulong_t
)&sdhci_jmicron
,
651 .vendor
= PCI_VENDOR_ID_SYSKONNECT
,
653 .subvendor
= PCI_ANY_ID
,
654 .subdevice
= PCI_ANY_ID
,
655 .driver_data
= (kernel_ulong_t
)&sdhci_syskt
,
659 .vendor
= PCI_VENDOR_ID_VIA
,
661 .subvendor
= PCI_ANY_ID
,
662 .subdevice
= PCI_ANY_ID
,
663 .driver_data
= (kernel_ulong_t
)&sdhci_via
,
667 .vendor
= PCI_VENDOR_ID_INTEL
,
668 .device
= PCI_DEVICE_ID_INTEL_MRST_SD0
,
669 .subvendor
= PCI_ANY_ID
,
670 .subdevice
= PCI_ANY_ID
,
671 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mrst_hc0
,
675 .vendor
= PCI_VENDOR_ID_INTEL
,
676 .device
= PCI_DEVICE_ID_INTEL_MRST_SD1
,
677 .subvendor
= PCI_ANY_ID
,
678 .subdevice
= PCI_ANY_ID
,
679 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mrst_hc1_hc2
,
683 .vendor
= PCI_VENDOR_ID_INTEL
,
684 .device
= PCI_DEVICE_ID_INTEL_MRST_SD2
,
685 .subvendor
= PCI_ANY_ID
,
686 .subdevice
= PCI_ANY_ID
,
687 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mrst_hc1_hc2
,
691 .vendor
= PCI_VENDOR_ID_INTEL
,
692 .device
= PCI_DEVICE_ID_INTEL_MFD_SD
,
693 .subvendor
= PCI_ANY_ID
,
694 .subdevice
= PCI_ANY_ID
,
695 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_sd
,
699 .vendor
= PCI_VENDOR_ID_INTEL
,
700 .device
= PCI_DEVICE_ID_INTEL_MFD_SDIO1
,
701 .subvendor
= PCI_ANY_ID
,
702 .subdevice
= PCI_ANY_ID
,
703 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_sdio
,
707 .vendor
= PCI_VENDOR_ID_INTEL
,
708 .device
= PCI_DEVICE_ID_INTEL_MFD_SDIO2
,
709 .subvendor
= PCI_ANY_ID
,
710 .subdevice
= PCI_ANY_ID
,
711 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_sdio
,
715 .vendor
= PCI_VENDOR_ID_INTEL
,
716 .device
= PCI_DEVICE_ID_INTEL_MFD_EMMC0
,
717 .subvendor
= PCI_ANY_ID
,
718 .subdevice
= PCI_ANY_ID
,
719 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_emmc
,
723 .vendor
= PCI_VENDOR_ID_INTEL
,
724 .device
= PCI_DEVICE_ID_INTEL_MFD_EMMC1
,
725 .subvendor
= PCI_ANY_ID
,
726 .subdevice
= PCI_ANY_ID
,
727 .driver_data
= (kernel_ulong_t
)&sdhci_intel_mfd_emmc
,
731 .vendor
= PCI_VENDOR_ID_O2
,
732 .device
= PCI_DEVICE_ID_O2_8120
,
733 .subvendor
= PCI_ANY_ID
,
734 .subdevice
= PCI_ANY_ID
,
735 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
739 .vendor
= PCI_VENDOR_ID_O2
,
740 .device
= PCI_DEVICE_ID_O2_8220
,
741 .subvendor
= PCI_ANY_ID
,
742 .subdevice
= PCI_ANY_ID
,
743 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
747 .vendor
= PCI_VENDOR_ID_O2
,
748 .device
= PCI_DEVICE_ID_O2_8221
,
749 .subvendor
= PCI_ANY_ID
,
750 .subdevice
= PCI_ANY_ID
,
751 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
755 .vendor
= PCI_VENDOR_ID_O2
,
756 .device
= PCI_DEVICE_ID_O2_8320
,
757 .subvendor
= PCI_ANY_ID
,
758 .subdevice
= PCI_ANY_ID
,
759 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
763 .vendor
= PCI_VENDOR_ID_O2
,
764 .device
= PCI_DEVICE_ID_O2_8321
,
765 .subvendor
= PCI_ANY_ID
,
766 .subdevice
= PCI_ANY_ID
,
767 .driver_data
= (kernel_ulong_t
)&sdhci_o2
,
770 { /* Generic SD host controller */
771 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI
<< 8), 0xFFFF00)
774 { /* end: all zeroes */ },
777 MODULE_DEVICE_TABLE(pci
, pci_ids
);
779 /*****************************************************************************\
781 * SDHCI core callbacks *
783 \*****************************************************************************/
785 static int sdhci_pci_enable_dma(struct sdhci_host
*host
)
787 struct sdhci_pci_slot
*slot
;
788 struct pci_dev
*pdev
;
791 slot
= sdhci_priv(host
);
792 pdev
= slot
->chip
->pdev
;
794 if (((pdev
->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI
<< 8)) &&
795 ((pdev
->class & 0x0000FF) != PCI_SDHCI_IFDMA
) &&
796 (host
->flags
& SDHCI_USE_SDMA
)) {
797 dev_warn(&pdev
->dev
, "Will use DMA mode even though HW "
798 "doesn't fully claim to support it.\n");
801 ret
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
805 pci_set_master(pdev
);
810 static int sdhci_pci_8bit_width(struct sdhci_host
*host
, int width
)
814 ctrl
= sdhci_readb(host
, SDHCI_HOST_CONTROL
);
817 case MMC_BUS_WIDTH_8
:
818 ctrl
|= SDHCI_CTRL_8BITBUS
;
819 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
821 case MMC_BUS_WIDTH_4
:
822 ctrl
|= SDHCI_CTRL_4BITBUS
;
823 ctrl
&= ~SDHCI_CTRL_8BITBUS
;
826 ctrl
&= ~(SDHCI_CTRL_8BITBUS
| SDHCI_CTRL_4BITBUS
);
830 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
835 static struct sdhci_ops sdhci_pci_ops
= {
836 .enable_dma
= sdhci_pci_enable_dma
,
837 .platform_8bit_width
= sdhci_pci_8bit_width
,
840 /*****************************************************************************\
844 \*****************************************************************************/
848 static int sdhci_pci_suspend(struct pci_dev
*pdev
, pm_message_t state
)
850 struct sdhci_pci_chip
*chip
;
851 struct sdhci_pci_slot
*slot
;
852 mmc_pm_flag_t slot_pm_flags
;
853 mmc_pm_flag_t pm_flags
= 0;
856 chip
= pci_get_drvdata(pdev
);
860 for (i
= 0; i
< chip
->num_slots
; i
++) {
861 slot
= chip
->slots
[i
];
865 ret
= sdhci_suspend_host(slot
->host
, state
);
868 for (i
--; i
>= 0; i
--)
869 sdhci_resume_host(chip
->slots
[i
]->host
);
873 slot_pm_flags
= slot
->host
->mmc
->pm_flags
;
874 if (slot_pm_flags
& MMC_PM_WAKE_SDIO_IRQ
)
875 sdhci_enable_irq_wakeups(slot
->host
);
877 pm_flags
|= slot_pm_flags
;
880 if (chip
->fixes
&& chip
->fixes
->suspend
) {
881 ret
= chip
->fixes
->suspend(chip
, state
);
883 for (i
= chip
->num_slots
- 1; i
>= 0; i
--)
884 sdhci_resume_host(chip
->slots
[i
]->host
);
889 pci_save_state(pdev
);
890 if (pm_flags
& MMC_PM_KEEP_POWER
) {
891 if (pm_flags
& MMC_PM_WAKE_SDIO_IRQ
) {
892 pci_pme_active(pdev
, true);
893 pci_enable_wake(pdev
, PCI_D3hot
, 1);
895 pci_set_power_state(pdev
, PCI_D3hot
);
897 pci_enable_wake(pdev
, pci_choose_state(pdev
, state
), 0);
898 pci_disable_device(pdev
);
899 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
905 static int sdhci_pci_resume(struct pci_dev
*pdev
)
907 struct sdhci_pci_chip
*chip
;
908 struct sdhci_pci_slot
*slot
;
911 chip
= pci_get_drvdata(pdev
);
915 pci_set_power_state(pdev
, PCI_D0
);
916 pci_restore_state(pdev
);
917 ret
= pci_enable_device(pdev
);
921 if (chip
->fixes
&& chip
->fixes
->resume
) {
922 ret
= chip
->fixes
->resume(chip
);
927 for (i
= 0; i
< chip
->num_slots
; i
++) {
928 slot
= chip
->slots
[i
];
932 ret
= sdhci_resume_host(slot
->host
);
940 #else /* CONFIG_PM */
942 #define sdhci_pci_suspend NULL
943 #define sdhci_pci_resume NULL
945 #endif /* CONFIG_PM */
947 /*****************************************************************************\
949 * Device probing/removal *
951 \*****************************************************************************/
953 static struct sdhci_pci_slot
* __devinit
sdhci_pci_probe_slot(
954 struct pci_dev
*pdev
, struct sdhci_pci_chip
*chip
, int bar
)
956 struct sdhci_pci_slot
*slot
;
957 struct sdhci_host
*host
;
960 if (!(pci_resource_flags(pdev
, bar
) & IORESOURCE_MEM
)) {
961 dev_err(&pdev
->dev
, "BAR %d is not iomem. Aborting.\n", bar
);
962 return ERR_PTR(-ENODEV
);
965 if (pci_resource_len(pdev
, bar
) != 0x100) {
966 dev_err(&pdev
->dev
, "Invalid iomem size. You may "
967 "experience problems.\n");
970 if ((pdev
->class & 0x0000FF) == PCI_SDHCI_IFVENDOR
) {
971 dev_err(&pdev
->dev
, "Vendor specific interface. Aborting.\n");
972 return ERR_PTR(-ENODEV
);
975 if ((pdev
->class & 0x0000FF) > PCI_SDHCI_IFVENDOR
) {
976 dev_err(&pdev
->dev
, "Unknown interface. Aborting.\n");
977 return ERR_PTR(-ENODEV
);
980 host
= sdhci_alloc_host(&pdev
->dev
, sizeof(struct sdhci_pci_slot
));
982 dev_err(&pdev
->dev
, "cannot allocate host\n");
983 return ERR_CAST(host
);
986 slot
= sdhci_priv(host
);
992 host
->hw_name
= "PCI";
993 host
->ops
= &sdhci_pci_ops
;
994 host
->quirks
= chip
->quirks
;
996 host
->irq
= pdev
->irq
;
998 ret
= pci_request_region(pdev
, bar
, mmc_hostname(host
->mmc
));
1000 dev_err(&pdev
->dev
, "cannot request region\n");
1004 host
->ioaddr
= pci_ioremap_bar(pdev
, bar
);
1005 if (!host
->ioaddr
) {
1006 dev_err(&pdev
->dev
, "failed to remap registers\n");
1011 if (chip
->fixes
&& chip
->fixes
->probe_slot
) {
1012 ret
= chip
->fixes
->probe_slot(slot
);
1017 host
->mmc
->pm_caps
= MMC_PM_KEEP_POWER
| MMC_PM_WAKE_SDIO_IRQ
;
1019 ret
= sdhci_add_host(host
);
1026 if (chip
->fixes
&& chip
->fixes
->remove_slot
)
1027 chip
->fixes
->remove_slot(slot
, 0);
1030 iounmap(host
->ioaddr
);
1033 pci_release_region(pdev
, bar
);
1036 sdhci_free_host(host
);
1038 return ERR_PTR(ret
);
1041 static void sdhci_pci_remove_slot(struct sdhci_pci_slot
*slot
)
1047 scratch
= readl(slot
->host
->ioaddr
+ SDHCI_INT_STATUS
);
1048 if (scratch
== (u32
)-1)
1051 sdhci_remove_host(slot
->host
, dead
);
1053 if (slot
->chip
->fixes
&& slot
->chip
->fixes
->remove_slot
)
1054 slot
->chip
->fixes
->remove_slot(slot
, dead
);
1056 pci_release_region(slot
->chip
->pdev
, slot
->pci_bar
);
1058 sdhci_free_host(slot
->host
);
1061 static int __devinit
sdhci_pci_probe(struct pci_dev
*pdev
,
1062 const struct pci_device_id
*ent
)
1064 struct sdhci_pci_chip
*chip
;
1065 struct sdhci_pci_slot
*slot
;
1067 u8 slots
, first_bar
;
1070 BUG_ON(pdev
== NULL
);
1071 BUG_ON(ent
== NULL
);
1073 dev_info(&pdev
->dev
, "SDHCI controller found [%04x:%04x] (rev %x)\n",
1074 (int)pdev
->vendor
, (int)pdev
->device
, (int)pdev
->revision
);
1076 ret
= pci_read_config_byte(pdev
, PCI_SLOT_INFO
, &slots
);
1080 slots
= PCI_SLOT_INFO_SLOTS(slots
) + 1;
1081 dev_dbg(&pdev
->dev
, "found %d slot(s)\n", slots
);
1085 BUG_ON(slots
> MAX_SLOTS
);
1087 ret
= pci_read_config_byte(pdev
, PCI_SLOT_INFO
, &first_bar
);
1091 first_bar
&= PCI_SLOT_INFO_FIRST_BAR_MASK
;
1093 if (first_bar
> 5) {
1094 dev_err(&pdev
->dev
, "Invalid first BAR. Aborting.\n");
1098 ret
= pci_enable_device(pdev
);
1102 chip
= kzalloc(sizeof(struct sdhci_pci_chip
), GFP_KERNEL
);
1109 chip
->fixes
= (const struct sdhci_pci_fixes
*)ent
->driver_data
;
1111 chip
->quirks
= chip
->fixes
->quirks
;
1112 chip
->num_slots
= slots
;
1114 pci_set_drvdata(pdev
, chip
);
1116 if (chip
->fixes
&& chip
->fixes
->probe
) {
1117 ret
= chip
->fixes
->probe(chip
);
1122 slots
= chip
->num_slots
; /* Quirk may have changed this */
1124 for (i
= 0; i
< slots
; i
++) {
1125 slot
= sdhci_pci_probe_slot(pdev
, chip
, first_bar
+ i
);
1127 for (i
--; i
>= 0; i
--)
1128 sdhci_pci_remove_slot(chip
->slots
[i
]);
1129 ret
= PTR_ERR(slot
);
1133 chip
->slots
[i
] = slot
;
1139 pci_set_drvdata(pdev
, NULL
);
1143 pci_disable_device(pdev
);
1147 static void __devexit
sdhci_pci_remove(struct pci_dev
*pdev
)
1150 struct sdhci_pci_chip
*chip
;
1152 chip
= pci_get_drvdata(pdev
);
1155 for (i
= 0; i
< chip
->num_slots
; i
++)
1156 sdhci_pci_remove_slot(chip
->slots
[i
]);
1158 pci_set_drvdata(pdev
, NULL
);
1162 pci_disable_device(pdev
);
1165 static struct pci_driver sdhci_driver
= {
1166 .name
= "sdhci-pci",
1167 .id_table
= pci_ids
,
1168 .probe
= sdhci_pci_probe
,
1169 .remove
= __devexit_p(sdhci_pci_remove
),
1170 .suspend
= sdhci_pci_suspend
,
1171 .resume
= sdhci_pci_resume
,
1174 /*****************************************************************************\
1176 * Driver init/exit *
1178 \*****************************************************************************/
1180 static int __init
sdhci_drv_init(void)
1182 return pci_register_driver(&sdhci_driver
);
1185 static void __exit
sdhci_drv_exit(void)
1187 pci_unregister_driver(&sdhci_driver
);
1190 module_init(sdhci_drv_init
);
1191 module_exit(sdhci_drv_exit
);
1193 MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
1194 MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1195 MODULE_LICENSE("GPL");