Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1 | /* 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> |
| 17 | #include <linux/pci.h> |
| 18 | #include <linux/dma-mapping.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame^] | 19 | #include <linux/slab.h> |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 20 | |
| 21 | #include <linux/mmc/host.h> |
| 22 | |
| 23 | #include <asm/scatterlist.h> |
| 24 | #include <asm/io.h> |
| 25 | |
| 26 | #include "sdhci.h" |
| 27 | |
| 28 | /* |
| 29 | * PCI registers |
| 30 | */ |
| 31 | |
| 32 | #define PCI_SDHCI_IFPIO 0x00 |
| 33 | #define PCI_SDHCI_IFDMA 0x01 |
| 34 | #define PCI_SDHCI_IFVENDOR 0x02 |
| 35 | |
| 36 | #define PCI_SLOT_INFO 0x40 /* 8 bits */ |
| 37 | #define PCI_SLOT_INFO_SLOTS(x) ((x >> 4) & 7) |
| 38 | #define PCI_SLOT_INFO_FIRST_BAR_MASK 0x07 |
| 39 | |
| 40 | #define MAX_SLOTS 8 |
| 41 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 42 | struct sdhci_pci_chip; |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 43 | struct sdhci_pci_slot; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 44 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 45 | struct sdhci_pci_fixes { |
| 46 | unsigned int quirks; |
| 47 | |
| 48 | int (*probe)(struct sdhci_pci_chip*); |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 49 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 50 | int (*probe_slot)(struct sdhci_pci_slot*); |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 51 | void (*remove_slot)(struct sdhci_pci_slot*, int); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 52 | |
| 53 | int (*suspend)(struct sdhci_pci_chip*, |
| 54 | pm_message_t); |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 55 | int (*resume)(struct sdhci_pci_chip*); |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 56 | }; |
| 57 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 58 | struct sdhci_pci_slot { |
| 59 | struct sdhci_pci_chip *chip; |
| 60 | struct sdhci_host *host; |
| 61 | |
| 62 | int pci_bar; |
| 63 | }; |
| 64 | |
| 65 | struct sdhci_pci_chip { |
| 66 | struct pci_dev *pdev; |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 67 | |
| 68 | unsigned int quirks; |
| 69 | const struct sdhci_pci_fixes *fixes; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 70 | |
| 71 | int num_slots; /* Slots on controller */ |
| 72 | struct sdhci_pci_slot *slots[MAX_SLOTS]; /* Pointers to host slots */ |
| 73 | }; |
| 74 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 75 | |
| 76 | /*****************************************************************************\ |
| 77 | * * |
| 78 | * Hardware specific quirk handling * |
| 79 | * * |
| 80 | \*****************************************************************************/ |
| 81 | |
| 82 | static int ricoh_probe(struct sdhci_pci_chip *chip) |
| 83 | { |
Chris Ball | c99436f | 2009-09-22 16:45:22 -0700 | [diff] [blame] | 84 | if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG || |
| 85 | chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY) |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 86 | chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET; |
| 87 | |
| 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | static const struct sdhci_pci_fixes sdhci_ricoh = { |
| 92 | .probe = ricoh_probe, |
Vasily Khoruzhick | 8493829 | 2010-03-05 13:43:46 -0800 | [diff] [blame] | 93 | .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR | |
| 94 | SDHCI_QUIRK_FORCE_DMA | |
| 95 | SDHCI_QUIRK_CLOCK_BEFORE_RESET, |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | static const struct sdhci_pci_fixes sdhci_ene_712 = { |
| 99 | .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE | |
| 100 | SDHCI_QUIRK_BROKEN_DMA, |
| 101 | }; |
| 102 | |
| 103 | static const struct sdhci_pci_fixes sdhci_ene_714 = { |
| 104 | .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE | |
| 105 | SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS | |
| 106 | SDHCI_QUIRK_BROKEN_DMA, |
| 107 | }; |
| 108 | |
| 109 | static const struct sdhci_pci_fixes sdhci_cafe = { |
| 110 | .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER | |
Andres Salomon | a087489 | 2009-03-02 21:48:20 +0100 | [diff] [blame] | 111 | SDHCI_QUIRK_NO_BUSY_IRQ | |
Pierre Ossman | ee53ab5 | 2008-07-05 00:25:15 +0200 | [diff] [blame] | 112 | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL, |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 113 | }; |
| 114 | |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 115 | static int jmicron_pmos(struct sdhci_pci_chip *chip, int on) |
| 116 | { |
| 117 | u8 scratch; |
| 118 | int ret; |
| 119 | |
| 120 | ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch); |
| 121 | if (ret) |
| 122 | return ret; |
| 123 | |
| 124 | /* |
| 125 | * Turn PMOS on [bit 0], set over current detection to 2.4 V |
| 126 | * [bit 1:2] and enable over current debouncing [bit 6]. |
| 127 | */ |
| 128 | if (on) |
| 129 | scratch |= 0x47; |
| 130 | else |
| 131 | scratch &= ~0x47; |
| 132 | |
| 133 | ret = pci_write_config_byte(chip->pdev, 0xAE, scratch); |
| 134 | if (ret) |
| 135 | return ret; |
| 136 | |
| 137 | return 0; |
| 138 | } |
| 139 | |
| 140 | static int jmicron_probe(struct sdhci_pci_chip *chip) |
| 141 | { |
| 142 | int ret; |
| 143 | |
Pierre Ossman | 93fc48c | 2008-06-28 18:21:41 +0200 | [diff] [blame] | 144 | if (chip->pdev->revision == 0) { |
| 145 | chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR | |
| 146 | SDHCI_QUIRK_32BIT_DMA_SIZE | |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 147 | SDHCI_QUIRK_32BIT_ADMA_SIZE | |
Pierre Ossman | 4a3cba3 | 2008-07-29 00:11:16 +0200 | [diff] [blame] | 148 | SDHCI_QUIRK_RESET_AFTER_REQUEST | |
Pierre Ossman | 86a6a87 | 2009-02-02 21:13:49 +0100 | [diff] [blame] | 149 | SDHCI_QUIRK_BROKEN_SMALL_PIO; |
Pierre Ossman | 93fc48c | 2008-06-28 18:21:41 +0200 | [diff] [blame] | 150 | } |
| 151 | |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 152 | /* |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 153 | * JMicron chips can have two interfaces to the same hardware |
| 154 | * in order to work around limitations in Microsoft's driver. |
| 155 | * We need to make sure we only bind to one of them. |
| 156 | * |
| 157 | * This code assumes two things: |
| 158 | * |
| 159 | * 1. The PCI code adds subfunctions in order. |
| 160 | * |
| 161 | * 2. The MMC interface has a lower subfunction number |
| 162 | * than the SD interface. |
| 163 | */ |
| 164 | if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD) { |
| 165 | struct pci_dev *sd_dev; |
| 166 | |
| 167 | sd_dev = NULL; |
| 168 | while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON, |
| 169 | PCI_DEVICE_ID_JMICRON_JMB38X_MMC, sd_dev)) != NULL) { |
| 170 | if ((PCI_SLOT(chip->pdev->devfn) == |
| 171 | PCI_SLOT(sd_dev->devfn)) && |
| 172 | (chip->pdev->bus == sd_dev->bus)) |
| 173 | break; |
| 174 | } |
| 175 | |
| 176 | if (sd_dev) { |
| 177 | pci_dev_put(sd_dev); |
| 178 | dev_info(&chip->pdev->dev, "Refusing to bind to " |
| 179 | "secondary interface.\n"); |
| 180 | return -ENODEV; |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | /* |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 185 | * JMicron chips need a bit of a nudge to enable the power |
| 186 | * output pins. |
| 187 | */ |
| 188 | ret = jmicron_pmos(chip, 1); |
| 189 | if (ret) { |
| 190 | dev_err(&chip->pdev->dev, "Failure enabling card power\n"); |
| 191 | return ret; |
| 192 | } |
| 193 | |
| 194 | return 0; |
| 195 | } |
| 196 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 197 | static void jmicron_enable_mmc(struct sdhci_host *host, int on) |
| 198 | { |
| 199 | u8 scratch; |
| 200 | |
| 201 | scratch = readb(host->ioaddr + 0xC0); |
| 202 | |
| 203 | if (on) |
| 204 | scratch |= 0x01; |
| 205 | else |
| 206 | scratch &= ~0x01; |
| 207 | |
| 208 | writeb(scratch, host->ioaddr + 0xC0); |
| 209 | } |
| 210 | |
| 211 | static int jmicron_probe_slot(struct sdhci_pci_slot *slot) |
| 212 | { |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 213 | if (slot->chip->pdev->revision == 0) { |
| 214 | u16 version; |
| 215 | |
| 216 | version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION); |
| 217 | version = (version & SDHCI_VENDOR_VER_MASK) >> |
| 218 | SDHCI_VENDOR_VER_SHIFT; |
| 219 | |
| 220 | /* |
| 221 | * Older versions of the chip have lots of nasty glitches |
| 222 | * in the ADMA engine. It's best just to avoid it |
| 223 | * completely. |
| 224 | */ |
| 225 | if (version < 0xAC) |
| 226 | slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA; |
| 227 | } |
| 228 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 229 | /* |
| 230 | * The secondary interface requires a bit set to get the |
| 231 | * interrupts. |
| 232 | */ |
| 233 | if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC) |
| 234 | jmicron_enable_mmc(slot->host, 1); |
| 235 | |
| 236 | return 0; |
| 237 | } |
| 238 | |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 239 | static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead) |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 240 | { |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 241 | if (dead) |
| 242 | return; |
| 243 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 244 | if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC) |
| 245 | jmicron_enable_mmc(slot->host, 0); |
| 246 | } |
| 247 | |
| 248 | static int jmicron_suspend(struct sdhci_pci_chip *chip, pm_message_t state) |
| 249 | { |
| 250 | int i; |
| 251 | |
| 252 | if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC) { |
| 253 | for (i = 0;i < chip->num_slots;i++) |
| 254 | jmicron_enable_mmc(chip->slots[i]->host, 0); |
| 255 | } |
| 256 | |
| 257 | return 0; |
| 258 | } |
| 259 | |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 260 | static int jmicron_resume(struct sdhci_pci_chip *chip) |
| 261 | { |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 262 | int ret, i; |
| 263 | |
| 264 | if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC) { |
| 265 | for (i = 0;i < chip->num_slots;i++) |
| 266 | jmicron_enable_mmc(chip->slots[i]->host, 1); |
| 267 | } |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 268 | |
| 269 | ret = jmicron_pmos(chip, 1); |
| 270 | if (ret) { |
| 271 | dev_err(&chip->pdev->dev, "Failure enabling card power\n"); |
| 272 | return ret; |
| 273 | } |
| 274 | |
| 275 | return 0; |
| 276 | } |
| 277 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 278 | static const struct sdhci_pci_fixes sdhci_jmicron = { |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 279 | .probe = jmicron_probe, |
| 280 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 281 | .probe_slot = jmicron_probe_slot, |
| 282 | .remove_slot = jmicron_remove_slot, |
| 283 | |
| 284 | .suspend = jmicron_suspend, |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 285 | .resume = jmicron_resume, |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 286 | }; |
| 287 | |
Nicolas Pitre | a7a6186 | 2009-12-14 18:01:26 -0800 | [diff] [blame] | 288 | /* SysKonnect CardBus2SDIO extra registers */ |
| 289 | #define SYSKT_CTRL 0x200 |
| 290 | #define SYSKT_RDFIFO_STAT 0x204 |
| 291 | #define SYSKT_WRFIFO_STAT 0x208 |
| 292 | #define SYSKT_POWER_DATA 0x20c |
| 293 | #define SYSKT_POWER_330 0xef |
| 294 | #define SYSKT_POWER_300 0xf8 |
| 295 | #define SYSKT_POWER_184 0xcc |
| 296 | #define SYSKT_POWER_CMD 0x20d |
| 297 | #define SYSKT_POWER_START (1 << 7) |
| 298 | #define SYSKT_POWER_STATUS 0x20e |
| 299 | #define SYSKT_POWER_STATUS_OK (1 << 0) |
| 300 | #define SYSKT_BOARD_REV 0x210 |
| 301 | #define SYSKT_CHIP_REV 0x211 |
| 302 | #define SYSKT_CONF_DATA 0x212 |
| 303 | #define SYSKT_CONF_DATA_1V8 (1 << 2) |
| 304 | #define SYSKT_CONF_DATA_2V5 (1 << 1) |
| 305 | #define SYSKT_CONF_DATA_3V3 (1 << 0) |
| 306 | |
| 307 | static int syskt_probe(struct sdhci_pci_chip *chip) |
| 308 | { |
| 309 | if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) { |
| 310 | chip->pdev->class &= ~0x0000FF; |
| 311 | chip->pdev->class |= PCI_SDHCI_IFDMA; |
| 312 | } |
| 313 | return 0; |
| 314 | } |
| 315 | |
| 316 | static int syskt_probe_slot(struct sdhci_pci_slot *slot) |
| 317 | { |
| 318 | int tm, ps; |
| 319 | |
| 320 | u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV); |
| 321 | u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV); |
| 322 | dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, " |
| 323 | "board rev %d.%d, chip rev %d.%d\n", |
| 324 | board_rev >> 4, board_rev & 0xf, |
| 325 | chip_rev >> 4, chip_rev & 0xf); |
| 326 | if (chip_rev >= 0x20) |
| 327 | slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA; |
| 328 | |
| 329 | writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA); |
| 330 | writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD); |
| 331 | udelay(50); |
| 332 | tm = 10; /* Wait max 1 ms */ |
| 333 | do { |
| 334 | ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS); |
| 335 | if (ps & SYSKT_POWER_STATUS_OK) |
| 336 | break; |
| 337 | udelay(100); |
| 338 | } while (--tm); |
| 339 | if (!tm) { |
| 340 | dev_err(&slot->chip->pdev->dev, |
| 341 | "power regulator never stabilized"); |
| 342 | writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD); |
| 343 | return -ENODEV; |
| 344 | } |
| 345 | |
| 346 | return 0; |
| 347 | } |
| 348 | |
| 349 | static const struct sdhci_pci_fixes sdhci_syskt = { |
| 350 | .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER, |
| 351 | .probe = syskt_probe, |
| 352 | .probe_slot = syskt_probe_slot, |
| 353 | }; |
| 354 | |
Harald Welte | 557b069 | 2009-06-18 16:53:38 +0200 | [diff] [blame] | 355 | static int via_probe(struct sdhci_pci_chip *chip) |
| 356 | { |
| 357 | if (chip->pdev->revision == 0x10) |
| 358 | chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER; |
| 359 | |
| 360 | return 0; |
| 361 | } |
| 362 | |
| 363 | static const struct sdhci_pci_fixes sdhci_via = { |
| 364 | .probe = via_probe, |
| 365 | }; |
| 366 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 367 | static const struct pci_device_id pci_ids[] __devinitdata = { |
| 368 | { |
| 369 | .vendor = PCI_VENDOR_ID_RICOH, |
| 370 | .device = PCI_DEVICE_ID_RICOH_R5C822, |
| 371 | .subvendor = PCI_ANY_ID, |
| 372 | .subdevice = PCI_ANY_ID, |
| 373 | .driver_data = (kernel_ulong_t)&sdhci_ricoh, |
| 374 | }, |
| 375 | |
| 376 | { |
| 377 | .vendor = PCI_VENDOR_ID_ENE, |
| 378 | .device = PCI_DEVICE_ID_ENE_CB712_SD, |
| 379 | .subvendor = PCI_ANY_ID, |
| 380 | .subdevice = PCI_ANY_ID, |
| 381 | .driver_data = (kernel_ulong_t)&sdhci_ene_712, |
| 382 | }, |
| 383 | |
| 384 | { |
| 385 | .vendor = PCI_VENDOR_ID_ENE, |
| 386 | .device = PCI_DEVICE_ID_ENE_CB712_SD_2, |
| 387 | .subvendor = PCI_ANY_ID, |
| 388 | .subdevice = PCI_ANY_ID, |
| 389 | .driver_data = (kernel_ulong_t)&sdhci_ene_712, |
| 390 | }, |
| 391 | |
| 392 | { |
| 393 | .vendor = PCI_VENDOR_ID_ENE, |
| 394 | .device = PCI_DEVICE_ID_ENE_CB714_SD, |
| 395 | .subvendor = PCI_ANY_ID, |
| 396 | .subdevice = PCI_ANY_ID, |
| 397 | .driver_data = (kernel_ulong_t)&sdhci_ene_714, |
| 398 | }, |
| 399 | |
| 400 | { |
| 401 | .vendor = PCI_VENDOR_ID_ENE, |
| 402 | .device = PCI_DEVICE_ID_ENE_CB714_SD_2, |
| 403 | .subvendor = PCI_ANY_ID, |
| 404 | .subdevice = PCI_ANY_ID, |
| 405 | .driver_data = (kernel_ulong_t)&sdhci_ene_714, |
| 406 | }, |
| 407 | |
| 408 | { |
| 409 | .vendor = PCI_VENDOR_ID_MARVELL, |
David Woodhouse | 8c5eb88 | 2008-09-03 09:45:57 +0100 | [diff] [blame] | 410 | .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD, |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 411 | .subvendor = PCI_ANY_ID, |
| 412 | .subdevice = PCI_ANY_ID, |
| 413 | .driver_data = (kernel_ulong_t)&sdhci_cafe, |
| 414 | }, |
| 415 | |
| 416 | { |
| 417 | .vendor = PCI_VENDOR_ID_JMICRON, |
| 418 | .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD, |
| 419 | .subvendor = PCI_ANY_ID, |
| 420 | .subdevice = PCI_ANY_ID, |
| 421 | .driver_data = (kernel_ulong_t)&sdhci_jmicron, |
| 422 | }, |
| 423 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 424 | { |
| 425 | .vendor = PCI_VENDOR_ID_JMICRON, |
| 426 | .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC, |
| 427 | .subvendor = PCI_ANY_ID, |
| 428 | .subdevice = PCI_ANY_ID, |
| 429 | .driver_data = (kernel_ulong_t)&sdhci_jmicron, |
| 430 | }, |
| 431 | |
Harald Welte | 557b069 | 2009-06-18 16:53:38 +0200 | [diff] [blame] | 432 | { |
Nicolas Pitre | a7a6186 | 2009-12-14 18:01:26 -0800 | [diff] [blame] | 433 | .vendor = PCI_VENDOR_ID_SYSKONNECT, |
| 434 | .device = 0x8000, |
| 435 | .subvendor = PCI_ANY_ID, |
| 436 | .subdevice = PCI_ANY_ID, |
| 437 | .driver_data = (kernel_ulong_t)&sdhci_syskt, |
| 438 | }, |
| 439 | |
| 440 | { |
Harald Welte | 557b069 | 2009-06-18 16:53:38 +0200 | [diff] [blame] | 441 | .vendor = PCI_VENDOR_ID_VIA, |
| 442 | .device = 0x95d0, |
| 443 | .subvendor = PCI_ANY_ID, |
| 444 | .subdevice = PCI_ANY_ID, |
| 445 | .driver_data = (kernel_ulong_t)&sdhci_via, |
| 446 | }, |
| 447 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 448 | { /* Generic SD host controller */ |
| 449 | PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00) |
| 450 | }, |
| 451 | |
| 452 | { /* end: all zeroes */ }, |
| 453 | }; |
| 454 | |
| 455 | MODULE_DEVICE_TABLE(pci, pci_ids); |
| 456 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 457 | /*****************************************************************************\ |
| 458 | * * |
| 459 | * SDHCI core callbacks * |
| 460 | * * |
| 461 | \*****************************************************************************/ |
| 462 | |
| 463 | static int sdhci_pci_enable_dma(struct sdhci_host *host) |
| 464 | { |
| 465 | struct sdhci_pci_slot *slot; |
| 466 | struct pci_dev *pdev; |
| 467 | int ret; |
| 468 | |
| 469 | slot = sdhci_priv(host); |
| 470 | pdev = slot->chip->pdev; |
| 471 | |
| 472 | if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) && |
| 473 | ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) && |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 474 | (host->flags & SDHCI_USE_SDMA)) { |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 475 | dev_warn(&pdev->dev, "Will use DMA mode even though HW " |
| 476 | "doesn't fully claim to support it.\n"); |
| 477 | } |
| 478 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 479 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 480 | if (ret) |
| 481 | return ret; |
| 482 | |
| 483 | pci_set_master(pdev); |
| 484 | |
| 485 | return 0; |
| 486 | } |
| 487 | |
| 488 | static struct sdhci_ops sdhci_pci_ops = { |
| 489 | .enable_dma = sdhci_pci_enable_dma, |
| 490 | }; |
| 491 | |
| 492 | /*****************************************************************************\ |
| 493 | * * |
| 494 | * Suspend/resume * |
| 495 | * * |
| 496 | \*****************************************************************************/ |
| 497 | |
| 498 | #ifdef CONFIG_PM |
| 499 | |
| 500 | static int sdhci_pci_suspend (struct pci_dev *pdev, pm_message_t state) |
| 501 | { |
| 502 | struct sdhci_pci_chip *chip; |
| 503 | struct sdhci_pci_slot *slot; |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 504 | mmc_pm_flag_t pm_flags = 0; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 505 | int i, ret; |
| 506 | |
| 507 | chip = pci_get_drvdata(pdev); |
| 508 | if (!chip) |
| 509 | return 0; |
| 510 | |
| 511 | for (i = 0;i < chip->num_slots;i++) { |
| 512 | slot = chip->slots[i]; |
| 513 | if (!slot) |
| 514 | continue; |
| 515 | |
| 516 | ret = sdhci_suspend_host(slot->host, state); |
| 517 | |
| 518 | if (ret) { |
| 519 | for (i--;i >= 0;i--) |
| 520 | sdhci_resume_host(chip->slots[i]->host); |
| 521 | return ret; |
| 522 | } |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 523 | |
| 524 | pm_flags |= slot->host->mmc->pm_flags; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 525 | } |
| 526 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 527 | if (chip->fixes && chip->fixes->suspend) { |
| 528 | ret = chip->fixes->suspend(chip, state); |
| 529 | if (ret) { |
| 530 | for (i = chip->num_slots - 1;i >= 0;i--) |
| 531 | sdhci_resume_host(chip->slots[i]->host); |
| 532 | return ret; |
| 533 | } |
| 534 | } |
| 535 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 536 | pci_save_state(pdev); |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 537 | if (pm_flags & MMC_PM_KEEP_POWER) { |
| 538 | if (pm_flags & MMC_PM_WAKE_SDIO_IRQ) |
| 539 | pci_enable_wake(pdev, PCI_D3hot, 1); |
| 540 | pci_set_power_state(pdev, PCI_D3hot); |
| 541 | } else { |
| 542 | pci_enable_wake(pdev, pci_choose_state(pdev, state), 0); |
| 543 | pci_disable_device(pdev); |
| 544 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); |
| 545 | } |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 546 | |
| 547 | return 0; |
| 548 | } |
| 549 | |
| 550 | static int sdhci_pci_resume (struct pci_dev *pdev) |
| 551 | { |
| 552 | struct sdhci_pci_chip *chip; |
| 553 | struct sdhci_pci_slot *slot; |
| 554 | int i, ret; |
| 555 | |
| 556 | chip = pci_get_drvdata(pdev); |
| 557 | if (!chip) |
| 558 | return 0; |
| 559 | |
| 560 | pci_set_power_state(pdev, PCI_D0); |
| 561 | pci_restore_state(pdev); |
| 562 | ret = pci_enable_device(pdev); |
| 563 | if (ret) |
| 564 | return ret; |
| 565 | |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 566 | if (chip->fixes && chip->fixes->resume) { |
| 567 | ret = chip->fixes->resume(chip); |
| 568 | if (ret) |
| 569 | return ret; |
| 570 | } |
| 571 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 572 | for (i = 0;i < chip->num_slots;i++) { |
| 573 | slot = chip->slots[i]; |
| 574 | if (!slot) |
| 575 | continue; |
| 576 | |
| 577 | ret = sdhci_resume_host(slot->host); |
| 578 | if (ret) |
| 579 | return ret; |
| 580 | } |
| 581 | |
| 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | #else /* CONFIG_PM */ |
| 586 | |
| 587 | #define sdhci_pci_suspend NULL |
| 588 | #define sdhci_pci_resume NULL |
| 589 | |
| 590 | #endif /* CONFIG_PM */ |
| 591 | |
| 592 | /*****************************************************************************\ |
| 593 | * * |
| 594 | * Device probing/removal * |
| 595 | * * |
| 596 | \*****************************************************************************/ |
| 597 | |
| 598 | static struct sdhci_pci_slot * __devinit sdhci_pci_probe_slot( |
| 599 | struct pci_dev *pdev, struct sdhci_pci_chip *chip, int bar) |
| 600 | { |
| 601 | struct sdhci_pci_slot *slot; |
| 602 | struct sdhci_host *host; |
| 603 | |
| 604 | resource_size_t addr; |
| 605 | |
| 606 | int ret; |
| 607 | |
| 608 | if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) { |
| 609 | dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar); |
| 610 | return ERR_PTR(-ENODEV); |
| 611 | } |
| 612 | |
| 613 | if (pci_resource_len(pdev, bar) != 0x100) { |
| 614 | dev_err(&pdev->dev, "Invalid iomem size. You may " |
| 615 | "experience problems.\n"); |
| 616 | } |
| 617 | |
| 618 | if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) { |
| 619 | dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n"); |
| 620 | return ERR_PTR(-ENODEV); |
| 621 | } |
| 622 | |
| 623 | if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) { |
| 624 | dev_err(&pdev->dev, "Unknown interface. Aborting.\n"); |
| 625 | return ERR_PTR(-ENODEV); |
| 626 | } |
| 627 | |
| 628 | host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot)); |
| 629 | if (IS_ERR(host)) { |
Dan Carpenter | c60a32c | 2009-04-10 23:31:10 +0200 | [diff] [blame] | 630 | dev_err(&pdev->dev, "cannot allocate host\n"); |
| 631 | return ERR_PTR(PTR_ERR(host)); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | slot = sdhci_priv(host); |
| 635 | |
| 636 | slot->chip = chip; |
| 637 | slot->host = host; |
| 638 | slot->pci_bar = bar; |
| 639 | |
| 640 | host->hw_name = "PCI"; |
| 641 | host->ops = &sdhci_pci_ops; |
| 642 | host->quirks = chip->quirks; |
| 643 | |
| 644 | host->irq = pdev->irq; |
| 645 | |
| 646 | ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc)); |
| 647 | if (ret) { |
| 648 | dev_err(&pdev->dev, "cannot request region\n"); |
Dan Carpenter | c60a32c | 2009-04-10 23:31:10 +0200 | [diff] [blame] | 649 | goto free; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | addr = pci_resource_start(pdev, bar); |
Arjan van de Ven | 092f82e | 2008-09-28 16:15:56 -0700 | [diff] [blame] | 653 | host->ioaddr = pci_ioremap_bar(pdev, bar); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 654 | if (!host->ioaddr) { |
| 655 | dev_err(&pdev->dev, "failed to remap registers\n"); |
| 656 | goto release; |
| 657 | } |
| 658 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 659 | if (chip->fixes && chip->fixes->probe_slot) { |
| 660 | ret = chip->fixes->probe_slot(slot); |
| 661 | if (ret) |
| 662 | goto unmap; |
| 663 | } |
| 664 | |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 665 | host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ; |
| 666 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 667 | ret = sdhci_add_host(host); |
| 668 | if (ret) |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 669 | goto remove; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 670 | |
| 671 | return slot; |
| 672 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 673 | remove: |
| 674 | if (chip->fixes && chip->fixes->remove_slot) |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 675 | chip->fixes->remove_slot(slot, 0); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 676 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 677 | unmap: |
| 678 | iounmap(host->ioaddr); |
| 679 | |
| 680 | release: |
| 681 | pci_release_region(pdev, bar); |
Dan Carpenter | c60a32c | 2009-04-10 23:31:10 +0200 | [diff] [blame] | 682 | |
| 683 | free: |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 684 | sdhci_free_host(host); |
| 685 | |
| 686 | return ERR_PTR(ret); |
| 687 | } |
| 688 | |
| 689 | static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot) |
| 690 | { |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 691 | int dead; |
| 692 | u32 scratch; |
| 693 | |
| 694 | dead = 0; |
| 695 | scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS); |
| 696 | if (scratch == (u32)-1) |
| 697 | dead = 1; |
| 698 | |
| 699 | sdhci_remove_host(slot->host, dead); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 700 | |
| 701 | if (slot->chip->fixes && slot->chip->fixes->remove_slot) |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 702 | slot->chip->fixes->remove_slot(slot, dead); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 703 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 704 | pci_release_region(slot->chip->pdev, slot->pci_bar); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 705 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 706 | sdhci_free_host(slot->host); |
| 707 | } |
| 708 | |
| 709 | static int __devinit sdhci_pci_probe(struct pci_dev *pdev, |
| 710 | const struct pci_device_id *ent) |
| 711 | { |
| 712 | struct sdhci_pci_chip *chip; |
| 713 | struct sdhci_pci_slot *slot; |
| 714 | |
| 715 | u8 slots, rev, first_bar; |
| 716 | int ret, i; |
| 717 | |
| 718 | BUG_ON(pdev == NULL); |
| 719 | BUG_ON(ent == NULL); |
| 720 | |
| 721 | pci_read_config_byte(pdev, PCI_CLASS_REVISION, &rev); |
| 722 | |
| 723 | dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n", |
| 724 | (int)pdev->vendor, (int)pdev->device, (int)rev); |
| 725 | |
| 726 | ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots); |
| 727 | if (ret) |
| 728 | return ret; |
| 729 | |
| 730 | slots = PCI_SLOT_INFO_SLOTS(slots) + 1; |
| 731 | dev_dbg(&pdev->dev, "found %d slot(s)\n", slots); |
| 732 | if (slots == 0) |
| 733 | return -ENODEV; |
| 734 | |
| 735 | BUG_ON(slots > MAX_SLOTS); |
| 736 | |
| 737 | ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar); |
| 738 | if (ret) |
| 739 | return ret; |
| 740 | |
| 741 | first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK; |
| 742 | |
| 743 | if (first_bar > 5) { |
| 744 | dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n"); |
| 745 | return -ENODEV; |
| 746 | } |
| 747 | |
| 748 | ret = pci_enable_device(pdev); |
| 749 | if (ret) |
| 750 | return ret; |
| 751 | |
| 752 | chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL); |
| 753 | if (!chip) { |
| 754 | ret = -ENOMEM; |
| 755 | goto err; |
| 756 | } |
| 757 | |
| 758 | chip->pdev = pdev; |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 759 | chip->fixes = (const struct sdhci_pci_fixes*)ent->driver_data; |
| 760 | if (chip->fixes) |
| 761 | chip->quirks = chip->fixes->quirks; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 762 | chip->num_slots = slots; |
| 763 | |
| 764 | pci_set_drvdata(pdev, chip); |
| 765 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 766 | if (chip->fixes && chip->fixes->probe) { |
| 767 | ret = chip->fixes->probe(chip); |
| 768 | if (ret) |
| 769 | goto free; |
| 770 | } |
| 771 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 772 | for (i = 0;i < slots;i++) { |
| 773 | slot = sdhci_pci_probe_slot(pdev, chip, first_bar + i); |
| 774 | if (IS_ERR(slot)) { |
| 775 | for (i--;i >= 0;i--) |
| 776 | sdhci_pci_remove_slot(chip->slots[i]); |
| 777 | ret = PTR_ERR(slot); |
| 778 | goto free; |
| 779 | } |
| 780 | |
| 781 | chip->slots[i] = slot; |
| 782 | } |
| 783 | |
| 784 | return 0; |
| 785 | |
| 786 | free: |
| 787 | pci_set_drvdata(pdev, NULL); |
| 788 | kfree(chip); |
| 789 | |
| 790 | err: |
| 791 | pci_disable_device(pdev); |
| 792 | return ret; |
| 793 | } |
| 794 | |
| 795 | static void __devexit sdhci_pci_remove(struct pci_dev *pdev) |
| 796 | { |
| 797 | int i; |
| 798 | struct sdhci_pci_chip *chip; |
| 799 | |
| 800 | chip = pci_get_drvdata(pdev); |
| 801 | |
| 802 | if (chip) { |
| 803 | for (i = 0;i < chip->num_slots; i++) |
| 804 | sdhci_pci_remove_slot(chip->slots[i]); |
| 805 | |
| 806 | pci_set_drvdata(pdev, NULL); |
| 807 | kfree(chip); |
| 808 | } |
| 809 | |
| 810 | pci_disable_device(pdev); |
| 811 | } |
| 812 | |
| 813 | static struct pci_driver sdhci_driver = { |
| 814 | .name = "sdhci-pci", |
| 815 | .id_table = pci_ids, |
| 816 | .probe = sdhci_pci_probe, |
| 817 | .remove = __devexit_p(sdhci_pci_remove), |
| 818 | .suspend = sdhci_pci_suspend, |
| 819 | .resume = sdhci_pci_resume, |
| 820 | }; |
| 821 | |
| 822 | /*****************************************************************************\ |
| 823 | * * |
| 824 | * Driver init/exit * |
| 825 | * * |
| 826 | \*****************************************************************************/ |
| 827 | |
| 828 | static int __init sdhci_drv_init(void) |
| 829 | { |
| 830 | return pci_register_driver(&sdhci_driver); |
| 831 | } |
| 832 | |
| 833 | static void __exit sdhci_drv_exit(void) |
| 834 | { |
| 835 | pci_unregister_driver(&sdhci_driver); |
| 836 | } |
| 837 | |
| 838 | module_init(sdhci_drv_init); |
| 839 | module_exit(sdhci_drv_exit); |
| 840 | |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 841 | MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>"); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 842 | MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver"); |
| 843 | MODULE_LICENSE("GPL"); |