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>
20 #include <linux/mmc/host.h>
22 #include <asm/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_IBM)
84 chip->quirks |= SDHCI_QUIRK_CLOCK_BEFORE_RESET;
86 if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG)
87 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
92 static const struct sdhci_pci_fixes sdhci_ricoh = {
94 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR,
97 static const struct sdhci_pci_fixes sdhci_ene_712 = {
98 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
99 SDHCI_QUIRK_BROKEN_DMA,
102 static const struct sdhci_pci_fixes sdhci_ene_714 = {
103 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
104 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS |
105 SDHCI_QUIRK_BROKEN_DMA,
108 static const struct sdhci_pci_fixes sdhci_cafe = {
109 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
110 SDHCI_QUIRK_NO_BUSY_IRQ |
111 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
114 static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
119 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
124 * Turn PMOS on [bit 0], set over current detection to 2.4 V
125 * [bit 1:2] and enable over current debouncing [bit 6].
132 ret = pci_write_config_byte(chip->pdev, 0xAE, scratch);
139 static int jmicron_probe(struct sdhci_pci_chip *chip)
143 if (chip->pdev->revision == 0) {
144 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
145 SDHCI_QUIRK_32BIT_DMA_SIZE |
146 SDHCI_QUIRK_32BIT_ADMA_SIZE |
147 SDHCI_QUIRK_RESET_AFTER_REQUEST |
148 SDHCI_QUIRK_BROKEN_SMALL_PIO;
152 * JMicron chips can have two interfaces to the same hardware
153 * in order to work around limitations in Microsoft's driver.
154 * We need to make sure we only bind to one of them.
156 * This code assumes two things:
158 * 1. The PCI code adds subfunctions in order.
160 * 2. The MMC interface has a lower subfunction number
161 * than the SD interface.
163 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD) {
164 struct pci_dev *sd_dev;
167 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
168 PCI_DEVICE_ID_JMICRON_JMB38X_MMC, sd_dev)) != NULL) {
169 if ((PCI_SLOT(chip->pdev->devfn) ==
170 PCI_SLOT(sd_dev->devfn)) &&
171 (chip->pdev->bus == sd_dev->bus))
177 dev_info(&chip->pdev->dev, "Refusing to bind to "
178 "secondary interface.\n");
184 * JMicron chips need a bit of a nudge to enable the power
187 ret = jmicron_pmos(chip, 1);
189 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
196 static void jmicron_enable_mmc(struct sdhci_host *host, int on)
200 scratch = readb(host->ioaddr + 0xC0);
207 writeb(scratch, host->ioaddr + 0xC0);
210 static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
212 if (slot->chip->pdev->revision == 0) {
215 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
216 version = (version & SDHCI_VENDOR_VER_MASK) >>
217 SDHCI_VENDOR_VER_SHIFT;
220 * Older versions of the chip have lots of nasty glitches
221 * in the ADMA engine. It's best just to avoid it
225 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
229 * The secondary interface requires a bit set to get the
232 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC)
233 jmicron_enable_mmc(slot->host, 1);
238 static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
243 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC)
244 jmicron_enable_mmc(slot->host, 0);
247 static int jmicron_suspend(struct sdhci_pci_chip *chip, pm_message_t state)
251 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC) {
252 for (i = 0;i < chip->num_slots;i++)
253 jmicron_enable_mmc(chip->slots[i]->host, 0);
259 static int jmicron_resume(struct sdhci_pci_chip *chip)
263 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC) {
264 for (i = 0;i < chip->num_slots;i++)
265 jmicron_enable_mmc(chip->slots[i]->host, 1);
268 ret = jmicron_pmos(chip, 1);
270 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
277 static const struct sdhci_pci_fixes sdhci_jmicron = {
278 .probe = jmicron_probe,
280 .probe_slot = jmicron_probe_slot,
281 .remove_slot = jmicron_remove_slot,
283 .suspend = jmicron_suspend,
284 .resume = jmicron_resume,
287 static int via_probe(struct sdhci_pci_chip *chip)
289 if (chip->pdev->revision == 0x10)
290 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
295 static const struct sdhci_pci_fixes sdhci_via = {
299 static const struct pci_device_id pci_ids[] __devinitdata = {
301 .vendor = PCI_VENDOR_ID_RICOH,
302 .device = PCI_DEVICE_ID_RICOH_R5C822,
303 .subvendor = PCI_ANY_ID,
304 .subdevice = PCI_ANY_ID,
305 .driver_data = (kernel_ulong_t)&sdhci_ricoh,
309 .vendor = PCI_VENDOR_ID_ENE,
310 .device = PCI_DEVICE_ID_ENE_CB712_SD,
311 .subvendor = PCI_ANY_ID,
312 .subdevice = PCI_ANY_ID,
313 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
317 .vendor = PCI_VENDOR_ID_ENE,
318 .device = PCI_DEVICE_ID_ENE_CB712_SD_2,
319 .subvendor = PCI_ANY_ID,
320 .subdevice = PCI_ANY_ID,
321 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
325 .vendor = PCI_VENDOR_ID_ENE,
326 .device = PCI_DEVICE_ID_ENE_CB714_SD,
327 .subvendor = PCI_ANY_ID,
328 .subdevice = PCI_ANY_ID,
329 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
333 .vendor = PCI_VENDOR_ID_ENE,
334 .device = PCI_DEVICE_ID_ENE_CB714_SD_2,
335 .subvendor = PCI_ANY_ID,
336 .subdevice = PCI_ANY_ID,
337 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
341 .vendor = PCI_VENDOR_ID_MARVELL,
342 .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD,
343 .subvendor = PCI_ANY_ID,
344 .subdevice = PCI_ANY_ID,
345 .driver_data = (kernel_ulong_t)&sdhci_cafe,
349 .vendor = PCI_VENDOR_ID_JMICRON,
350 .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD,
351 .subvendor = PCI_ANY_ID,
352 .subdevice = PCI_ANY_ID,
353 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
357 .vendor = PCI_VENDOR_ID_JMICRON,
358 .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC,
359 .subvendor = PCI_ANY_ID,
360 .subdevice = PCI_ANY_ID,
361 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
365 .vendor = PCI_VENDOR_ID_VIA,
367 .subvendor = PCI_ANY_ID,
368 .subdevice = PCI_ANY_ID,
369 .driver_data = (kernel_ulong_t)&sdhci_via,
372 { /* Generic SD host controller */
373 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00)
376 { /* end: all zeroes */ },
379 MODULE_DEVICE_TABLE(pci, pci_ids);
381 /*****************************************************************************\
383 * SDHCI core callbacks *
385 \*****************************************************************************/
387 static int sdhci_pci_enable_dma(struct sdhci_host *host)
389 struct sdhci_pci_slot *slot;
390 struct pci_dev *pdev;
393 slot = sdhci_priv(host);
394 pdev = slot->chip->pdev;
396 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
397 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
398 (host->flags & SDHCI_USE_DMA)) {
399 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
400 "doesn't fully claim to support it.\n");
403 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
407 pci_set_master(pdev);
412 static struct sdhci_ops sdhci_pci_ops = {
413 .enable_dma = sdhci_pci_enable_dma,
416 /*****************************************************************************\
420 \*****************************************************************************/
424 static int sdhci_pci_suspend (struct pci_dev *pdev, pm_message_t state)
426 struct sdhci_pci_chip *chip;
427 struct sdhci_pci_slot *slot;
430 chip = pci_get_drvdata(pdev);
434 for (i = 0;i < chip->num_slots;i++) {
435 slot = chip->slots[i];
439 ret = sdhci_suspend_host(slot->host, state);
443 sdhci_resume_host(chip->slots[i]->host);
448 if (chip->fixes && chip->fixes->suspend) {
449 ret = chip->fixes->suspend(chip, state);
451 for (i = chip->num_slots - 1;i >= 0;i--)
452 sdhci_resume_host(chip->slots[i]->host);
457 pci_save_state(pdev);
458 pci_enable_wake(pdev, pci_choose_state(pdev, state), 0);
459 pci_disable_device(pdev);
460 pci_set_power_state(pdev, pci_choose_state(pdev, state));
465 static int sdhci_pci_resume (struct pci_dev *pdev)
467 struct sdhci_pci_chip *chip;
468 struct sdhci_pci_slot *slot;
471 chip = pci_get_drvdata(pdev);
475 pci_set_power_state(pdev, PCI_D0);
476 pci_restore_state(pdev);
477 ret = pci_enable_device(pdev);
481 if (chip->fixes && chip->fixes->resume) {
482 ret = chip->fixes->resume(chip);
487 for (i = 0;i < chip->num_slots;i++) {
488 slot = chip->slots[i];
492 ret = sdhci_resume_host(slot->host);
500 #else /* CONFIG_PM */
502 #define sdhci_pci_suspend NULL
503 #define sdhci_pci_resume NULL
505 #endif /* CONFIG_PM */
507 /*****************************************************************************\
509 * Device probing/removal *
511 \*****************************************************************************/
513 static struct sdhci_pci_slot * __devinit sdhci_pci_probe_slot(
514 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int bar)
516 struct sdhci_pci_slot *slot;
517 struct sdhci_host *host;
519 resource_size_t addr;
523 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
524 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
525 return ERR_PTR(-ENODEV);
528 if (pci_resource_len(pdev, bar) != 0x100) {
529 dev_err(&pdev->dev, "Invalid iomem size. You may "
530 "experience problems.\n");
533 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
534 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
535 return ERR_PTR(-ENODEV);
538 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
539 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
540 return ERR_PTR(-ENODEV);
543 host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot));
545 dev_err(&pdev->dev, "cannot allocate host\n");
546 return ERR_PTR(PTR_ERR(host));
549 slot = sdhci_priv(host);
555 host->hw_name = "PCI";
556 host->ops = &sdhci_pci_ops;
557 host->quirks = chip->quirks;
559 host->irq = pdev->irq;
561 ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc));
563 dev_err(&pdev->dev, "cannot request region\n");
567 addr = pci_resource_start(pdev, bar);
568 host->ioaddr = pci_ioremap_bar(pdev, bar);
570 dev_err(&pdev->dev, "failed to remap registers\n");
574 if (chip->fixes && chip->fixes->probe_slot) {
575 ret = chip->fixes->probe_slot(slot);
580 ret = sdhci_add_host(host);
587 if (chip->fixes && chip->fixes->remove_slot)
588 chip->fixes->remove_slot(slot, 0);
591 iounmap(host->ioaddr);
594 pci_release_region(pdev, bar);
597 sdhci_free_host(host);
602 static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
608 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
609 if (scratch == (u32)-1)
612 sdhci_remove_host(slot->host, dead);
614 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
615 slot->chip->fixes->remove_slot(slot, dead);
617 pci_release_region(slot->chip->pdev, slot->pci_bar);
619 sdhci_free_host(slot->host);
622 static int __devinit sdhci_pci_probe(struct pci_dev *pdev,
623 const struct pci_device_id *ent)
625 struct sdhci_pci_chip *chip;
626 struct sdhci_pci_slot *slot;
628 u8 slots, rev, first_bar;
631 BUG_ON(pdev == NULL);
634 pci_read_config_byte(pdev, PCI_CLASS_REVISION, &rev);
636 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
637 (int)pdev->vendor, (int)pdev->device, (int)rev);
639 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
643 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
644 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
648 BUG_ON(slots > MAX_SLOTS);
650 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
654 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
657 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
661 ret = pci_enable_device(pdev);
665 chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
672 chip->fixes = (const struct sdhci_pci_fixes*)ent->driver_data;
674 chip->quirks = chip->fixes->quirks;
675 chip->num_slots = slots;
677 pci_set_drvdata(pdev, chip);
679 if (chip->fixes && chip->fixes->probe) {
680 ret = chip->fixes->probe(chip);
685 for (i = 0;i < slots;i++) {
686 slot = sdhci_pci_probe_slot(pdev, chip, first_bar + i);
689 sdhci_pci_remove_slot(chip->slots[i]);
694 chip->slots[i] = slot;
700 pci_set_drvdata(pdev, NULL);
704 pci_disable_device(pdev);
708 static void __devexit sdhci_pci_remove(struct pci_dev *pdev)
711 struct sdhci_pci_chip *chip;
713 chip = pci_get_drvdata(pdev);
716 for (i = 0;i < chip->num_slots; i++)
717 sdhci_pci_remove_slot(chip->slots[i]);
719 pci_set_drvdata(pdev, NULL);
723 pci_disable_device(pdev);
726 static struct pci_driver sdhci_driver = {
729 .probe = sdhci_pci_probe,
730 .remove = __devexit_p(sdhci_pci_remove),
731 .suspend = sdhci_pci_suspend,
732 .resume = sdhci_pci_resume,
735 /*****************************************************************************\
739 \*****************************************************************************/
741 static int __init sdhci_drv_init(void)
743 return pci_register_driver(&sdhci_driver);
746 static void __exit sdhci_drv_exit(void)
748 pci_unregister_driver(&sdhci_driver);
751 module_init(sdhci_drv_init);
752 module_exit(sdhci_drv_exit);
754 MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
755 MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
756 MODULE_LICENSE("GPL");