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> |
Paul Gortmaker | 88b4767 | 2011-07-03 15:15:51 -0400 | [diff] [blame] | 17 | #include <linux/module.h> |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 18 | #include <linux/pci.h> |
| 19 | #include <linux/dma-mapping.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Maxim Levitsky | ccc92c2 | 2010-08-10 18:01:42 -0700 | [diff] [blame] | 21 | #include <linux/device.h> |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 22 | #include <linux/mmc/host.h> |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 23 | #include <linux/scatterlist.h> |
| 24 | #include <linux/io.h> |
Adrian Hunter | 0f20165 | 2011-08-29 16:42:13 +0300 | [diff] [blame] | 25 | #include <linux/gpio.h> |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 26 | #include <linux/pm_runtime.h> |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 27 | #include <linux/mmc/sdhci-pci-data.h> |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 28 | |
| 29 | #include "sdhci.h" |
| 30 | |
| 31 | /* |
| 32 | * PCI registers |
| 33 | */ |
| 34 | |
| 35 | #define PCI_SDHCI_IFPIO 0x00 |
| 36 | #define PCI_SDHCI_IFDMA 0x01 |
| 37 | #define PCI_SDHCI_IFVENDOR 0x02 |
| 38 | |
| 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 |
| 42 | |
| 43 | #define MAX_SLOTS 8 |
| 44 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 45 | struct sdhci_pci_chip; |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 46 | struct sdhci_pci_slot; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 47 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 48 | struct sdhci_pci_fixes { |
| 49 | unsigned int quirks; |
Adrian Hunter | f3c55a7 | 2012-02-07 14:48:55 +0200 | [diff] [blame] | 50 | unsigned int quirks2; |
Adrian Hunter | c43fd77 | 2011-10-17 10:52:44 +0300 | [diff] [blame] | 51 | bool allow_runtime_pm; |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 52 | |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 53 | int (*probe) (struct sdhci_pci_chip *); |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 54 | |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 55 | int (*probe_slot) (struct sdhci_pci_slot *); |
| 56 | void (*remove_slot) (struct sdhci_pci_slot *, int); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 57 | |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 58 | int (*suspend) (struct sdhci_pci_chip *); |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 59 | int (*resume) (struct sdhci_pci_chip *); |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 60 | }; |
| 61 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 62 | struct sdhci_pci_slot { |
| 63 | struct sdhci_pci_chip *chip; |
| 64 | struct sdhci_host *host; |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 65 | struct sdhci_pci_data *data; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 66 | |
| 67 | int pci_bar; |
Adrian Hunter | 0f20165 | 2011-08-29 16:42:13 +0300 | [diff] [blame] | 68 | int rst_n_gpio; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 69 | int cd_gpio; |
| 70 | int cd_irq; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | struct sdhci_pci_chip { |
| 74 | struct pci_dev *pdev; |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 75 | |
| 76 | unsigned int quirks; |
Adrian Hunter | f3c55a7 | 2012-02-07 14:48:55 +0200 | [diff] [blame] | 77 | unsigned int quirks2; |
Adrian Hunter | c43fd77 | 2011-10-17 10:52:44 +0300 | [diff] [blame] | 78 | bool allow_runtime_pm; |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 79 | const struct sdhci_pci_fixes *fixes; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 80 | |
| 81 | int num_slots; /* Slots on controller */ |
| 82 | struct sdhci_pci_slot *slots[MAX_SLOTS]; /* Pointers to host slots */ |
| 83 | }; |
| 84 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 85 | |
| 86 | /*****************************************************************************\ |
| 87 | * * |
| 88 | * Hardware specific quirk handling * |
| 89 | * * |
| 90 | \*****************************************************************************/ |
| 91 | |
| 92 | static int ricoh_probe(struct sdhci_pci_chip *chip) |
| 93 | { |
Chris Ball | c99436f | 2009-09-22 16:45:22 -0700 | [diff] [blame] | 94 | if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG || |
| 95 | chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY) |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 96 | chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET; |
Maxim Levitsky | ccc92c2 | 2010-08-10 18:01:42 -0700 | [diff] [blame] | 97 | return 0; |
| 98 | } |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 99 | |
Maxim Levitsky | ccc92c2 | 2010-08-10 18:01:42 -0700 | [diff] [blame] | 100 | static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot) |
| 101 | { |
| 102 | slot->host->caps = |
| 103 | ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT) |
| 104 | & SDHCI_TIMEOUT_CLK_MASK) | |
| 105 | |
| 106 | ((0x21 << SDHCI_CLOCK_BASE_SHIFT) |
| 107 | & SDHCI_CLOCK_BASE_MASK) | |
| 108 | |
| 109 | SDHCI_TIMEOUT_CLK_UNIT | |
| 110 | SDHCI_CAN_VDD_330 | |
| 111 | SDHCI_CAN_DO_SDMA; |
| 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | static int ricoh_mmc_resume(struct sdhci_pci_chip *chip) |
| 116 | { |
| 117 | /* Apply a delay to allow controller to settle */ |
| 118 | /* Otherwise it becomes confused if card state changed |
| 119 | during suspend */ |
| 120 | msleep(500); |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 121 | return 0; |
| 122 | } |
| 123 | |
| 124 | static const struct sdhci_pci_fixes sdhci_ricoh = { |
| 125 | .probe = ricoh_probe, |
Vasily Khoruzhick | 8493829 | 2010-03-05 13:43:46 -0800 | [diff] [blame] | 126 | .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR | |
| 127 | SDHCI_QUIRK_FORCE_DMA | |
| 128 | SDHCI_QUIRK_CLOCK_BEFORE_RESET, |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 129 | }; |
| 130 | |
Maxim Levitsky | ccc92c2 | 2010-08-10 18:01:42 -0700 | [diff] [blame] | 131 | static const struct sdhci_pci_fixes sdhci_ricoh_mmc = { |
| 132 | .probe_slot = ricoh_mmc_probe_slot, |
| 133 | .resume = ricoh_mmc_resume, |
| 134 | .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR | |
| 135 | SDHCI_QUIRK_CLOCK_BEFORE_RESET | |
| 136 | SDHCI_QUIRK_NO_CARD_NO_RESET | |
| 137 | SDHCI_QUIRK_MISSING_CAPS |
| 138 | }; |
| 139 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 140 | static const struct sdhci_pci_fixes sdhci_ene_712 = { |
| 141 | .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE | |
| 142 | SDHCI_QUIRK_BROKEN_DMA, |
| 143 | }; |
| 144 | |
| 145 | static const struct sdhci_pci_fixes sdhci_ene_714 = { |
| 146 | .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE | |
| 147 | SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS | |
| 148 | SDHCI_QUIRK_BROKEN_DMA, |
| 149 | }; |
| 150 | |
| 151 | static const struct sdhci_pci_fixes sdhci_cafe = { |
| 152 | .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER | |
Andres Salomon | a087489 | 2009-03-02 21:48:20 +0100 | [diff] [blame] | 153 | SDHCI_QUIRK_NO_BUSY_IRQ | |
Pierre Ossman | ee53ab5 | 2008-07-05 00:25:15 +0200 | [diff] [blame] | 154 | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL, |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 155 | }; |
| 156 | |
Major Lee | 68077b0 | 2011-06-29 14:23:46 +0300 | [diff] [blame] | 157 | static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot) |
| 158 | { |
| 159 | slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA; |
| 160 | return 0; |
| 161 | } |
| 162 | |
Alan Cox | f9ee3ea | 2010-10-04 15:25:11 +0100 | [diff] [blame] | 163 | /* |
| 164 | * ADMA operation is disabled for Moorestown platform due to |
| 165 | * hardware bugs. |
| 166 | */ |
Jacob Pan | 35ac6f0 | 2010-11-09 13:57:29 +0000 | [diff] [blame] | 167 | static int mrst_hc_probe(struct sdhci_pci_chip *chip) |
Alan Cox | f9ee3ea | 2010-10-04 15:25:11 +0100 | [diff] [blame] | 168 | { |
| 169 | /* |
Jacob Pan | 35ac6f0 | 2010-11-09 13:57:29 +0000 | [diff] [blame] | 170 | * slots number is fixed here for MRST as SDIO3/5 are never used and |
| 171 | * have hardware bugs. |
Alan Cox | f9ee3ea | 2010-10-04 15:25:11 +0100 | [diff] [blame] | 172 | */ |
| 173 | chip->num_slots = 1; |
| 174 | return 0; |
| 175 | } |
| 176 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 177 | #ifdef CONFIG_PM_RUNTIME |
| 178 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 179 | static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id) |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 180 | { |
| 181 | struct sdhci_pci_slot *slot = dev_id; |
| 182 | struct sdhci_host *host = slot->host; |
| 183 | |
| 184 | mmc_detect_change(host->mmc, msecs_to_jiffies(200)); |
| 185 | return IRQ_HANDLED; |
| 186 | } |
| 187 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 188 | static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot) |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 189 | { |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 190 | int err, irq, gpio = slot->cd_gpio; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 191 | |
| 192 | slot->cd_gpio = -EINVAL; |
| 193 | slot->cd_irq = -EINVAL; |
| 194 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 195 | if (!gpio_is_valid(gpio)) |
| 196 | return; |
| 197 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 198 | err = gpio_request(gpio, "sd_cd"); |
| 199 | if (err < 0) |
| 200 | goto out; |
| 201 | |
| 202 | err = gpio_direction_input(gpio); |
| 203 | if (err < 0) |
| 204 | goto out_free; |
| 205 | |
| 206 | irq = gpio_to_irq(gpio); |
| 207 | if (irq < 0) |
| 208 | goto out_free; |
| 209 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 210 | err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 211 | IRQF_TRIGGER_FALLING, "sd_cd", slot); |
| 212 | if (err) |
| 213 | goto out_free; |
| 214 | |
| 215 | slot->cd_gpio = gpio; |
| 216 | slot->cd_irq = irq; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 217 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 218 | return; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 219 | |
| 220 | out_free: |
| 221 | gpio_free(gpio); |
| 222 | out: |
| 223 | dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n"); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 224 | } |
| 225 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 226 | static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot) |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 227 | { |
| 228 | if (slot->cd_irq >= 0) |
| 229 | free_irq(slot->cd_irq, slot); |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 230 | if (gpio_is_valid(slot->cd_gpio)) |
| 231 | gpio_free(slot->cd_gpio); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | #else |
| 235 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 236 | static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot) |
| 237 | { |
| 238 | } |
| 239 | |
| 240 | static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot) |
| 241 | { |
| 242 | } |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 243 | |
| 244 | #endif |
| 245 | |
Adrian Hunter | 0d013bc | 2011-06-29 14:23:47 +0300 | [diff] [blame] | 246 | static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot) |
| 247 | { |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 248 | slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE; |
Adrian Hunter | da721cf | 2012-02-07 14:48:53 +0200 | [diff] [blame] | 249 | slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC | |
| 250 | MMC_CAP2_HC_ERASE_SZ; |
Adrian Hunter | 0d013bc | 2011-06-29 14:23:47 +0300 | [diff] [blame] | 251 | return 0; |
| 252 | } |
| 253 | |
Adrian Hunter | 9393350 | 2011-12-27 15:48:47 +0200 | [diff] [blame] | 254 | static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot) |
| 255 | { |
Adrian Hunter | 012e467 | 2012-01-30 14:27:18 +0200 | [diff] [blame] | 256 | slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE; |
Adrian Hunter | 9393350 | 2011-12-27 15:48:47 +0200 | [diff] [blame] | 257 | return 0; |
| 258 | } |
| 259 | |
Alan Cox | f9ee3ea | 2010-10-04 15:25:11 +0100 | [diff] [blame] | 260 | static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = { |
| 261 | .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT, |
Major Lee | 68077b0 | 2011-06-29 14:23:46 +0300 | [diff] [blame] | 262 | .probe_slot = mrst_hc_probe_slot, |
Alan Cox | f9ee3ea | 2010-10-04 15:25:11 +0100 | [diff] [blame] | 263 | }; |
| 264 | |
Jacob Pan | 35ac6f0 | 2010-11-09 13:57:29 +0000 | [diff] [blame] | 265 | static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = { |
Alan Cox | f9ee3ea | 2010-10-04 15:25:11 +0100 | [diff] [blame] | 266 | .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT, |
Jacob Pan | 35ac6f0 | 2010-11-09 13:57:29 +0000 | [diff] [blame] | 267 | .probe = mrst_hc_probe, |
Alan Cox | f9ee3ea | 2010-10-04 15:25:11 +0100 | [diff] [blame] | 268 | }; |
| 269 | |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 270 | static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = { |
| 271 | .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC, |
Adrian Hunter | c43fd77 | 2011-10-17 10:52:44 +0300 | [diff] [blame] | 272 | .allow_runtime_pm = true, |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 273 | }; |
| 274 | |
Adrian Hunter | 0d013bc | 2011-06-29 14:23:47 +0300 | [diff] [blame] | 275 | static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = { |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 276 | .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC, |
Adrian Hunter | f3c55a7 | 2012-02-07 14:48:55 +0200 | [diff] [blame] | 277 | .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON, |
Adrian Hunter | c43fd77 | 2011-10-17 10:52:44 +0300 | [diff] [blame] | 278 | .allow_runtime_pm = true, |
Adrian Hunter | 9393350 | 2011-12-27 15:48:47 +0200 | [diff] [blame] | 279 | .probe_slot = mfd_sdio_probe_slot, |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 280 | }; |
| 281 | |
Adrian Hunter | 0d013bc | 2011-06-29 14:23:47 +0300 | [diff] [blame] | 282 | static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = { |
| 283 | .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC, |
Adrian Hunter | c43fd77 | 2011-10-17 10:52:44 +0300 | [diff] [blame] | 284 | .allow_runtime_pm = true, |
Adrian Hunter | 0d013bc | 2011-06-29 14:23:47 +0300 | [diff] [blame] | 285 | .probe_slot = mfd_emmc_probe_slot, |
| 286 | }; |
| 287 | |
Jennifer Li | 26daa1e | 2010-11-17 23:01:59 -0500 | [diff] [blame] | 288 | /* O2Micro extra registers */ |
| 289 | #define O2_SD_LOCK_WP 0xD3 |
| 290 | #define O2_SD_MULTI_VCC3V 0xEE |
| 291 | #define O2_SD_CLKREQ 0xEC |
| 292 | #define O2_SD_CAPS 0xE0 |
| 293 | #define O2_SD_ADMA1 0xE2 |
| 294 | #define O2_SD_ADMA2 0xE7 |
| 295 | #define O2_SD_INF_MOD 0xF1 |
| 296 | |
| 297 | static int o2_probe(struct sdhci_pci_chip *chip) |
| 298 | { |
| 299 | int ret; |
| 300 | u8 scratch; |
| 301 | |
| 302 | switch (chip->pdev->device) { |
| 303 | case PCI_DEVICE_ID_O2_8220: |
| 304 | case PCI_DEVICE_ID_O2_8221: |
| 305 | case PCI_DEVICE_ID_O2_8320: |
| 306 | case PCI_DEVICE_ID_O2_8321: |
| 307 | /* This extra setup is required due to broken ADMA. */ |
| 308 | ret = pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch); |
| 309 | if (ret) |
| 310 | return ret; |
| 311 | scratch &= 0x7f; |
| 312 | pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch); |
| 313 | |
| 314 | /* Set Multi 3 to VCC3V# */ |
| 315 | pci_write_config_byte(chip->pdev, O2_SD_MULTI_VCC3V, 0x08); |
| 316 | |
| 317 | /* Disable CLK_REQ# support after media DET */ |
| 318 | ret = pci_read_config_byte(chip->pdev, O2_SD_CLKREQ, &scratch); |
| 319 | if (ret) |
| 320 | return ret; |
| 321 | scratch |= 0x20; |
| 322 | pci_write_config_byte(chip->pdev, O2_SD_CLKREQ, scratch); |
| 323 | |
| 324 | /* Choose capabilities, enable SDMA. We have to write 0x01 |
| 325 | * to the capabilities register first to unlock it. |
| 326 | */ |
| 327 | ret = pci_read_config_byte(chip->pdev, O2_SD_CAPS, &scratch); |
| 328 | if (ret) |
| 329 | return ret; |
| 330 | scratch |= 0x01; |
| 331 | pci_write_config_byte(chip->pdev, O2_SD_CAPS, scratch); |
| 332 | pci_write_config_byte(chip->pdev, O2_SD_CAPS, 0x73); |
| 333 | |
| 334 | /* Disable ADMA1/2 */ |
| 335 | pci_write_config_byte(chip->pdev, O2_SD_ADMA1, 0x39); |
| 336 | pci_write_config_byte(chip->pdev, O2_SD_ADMA2, 0x08); |
| 337 | |
| 338 | /* Disable the infinite transfer mode */ |
| 339 | ret = pci_read_config_byte(chip->pdev, O2_SD_INF_MOD, &scratch); |
| 340 | if (ret) |
| 341 | return ret; |
| 342 | scratch |= 0x08; |
| 343 | pci_write_config_byte(chip->pdev, O2_SD_INF_MOD, scratch); |
| 344 | |
| 345 | /* Lock WP */ |
| 346 | ret = pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch); |
| 347 | if (ret) |
| 348 | return ret; |
| 349 | scratch |= 0x80; |
| 350 | pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch); |
| 351 | } |
| 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 356 | static int jmicron_pmos(struct sdhci_pci_chip *chip, int on) |
| 357 | { |
| 358 | u8 scratch; |
| 359 | int ret; |
| 360 | |
| 361 | ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch); |
| 362 | if (ret) |
| 363 | return ret; |
| 364 | |
| 365 | /* |
| 366 | * Turn PMOS on [bit 0], set over current detection to 2.4 V |
| 367 | * [bit 1:2] and enable over current debouncing [bit 6]. |
| 368 | */ |
| 369 | if (on) |
| 370 | scratch |= 0x47; |
| 371 | else |
| 372 | scratch &= ~0x47; |
| 373 | |
| 374 | ret = pci_write_config_byte(chip->pdev, 0xAE, scratch); |
| 375 | if (ret) |
| 376 | return ret; |
| 377 | |
| 378 | return 0; |
| 379 | } |
| 380 | |
| 381 | static int jmicron_probe(struct sdhci_pci_chip *chip) |
| 382 | { |
| 383 | int ret; |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 384 | u16 mmcdev = 0; |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 385 | |
Pierre Ossman | 93fc48c | 2008-06-28 18:21:41 +0200 | [diff] [blame] | 386 | if (chip->pdev->revision == 0) { |
| 387 | chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR | |
| 388 | SDHCI_QUIRK_32BIT_DMA_SIZE | |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 389 | SDHCI_QUIRK_32BIT_ADMA_SIZE | |
Pierre Ossman | 4a3cba3 | 2008-07-29 00:11:16 +0200 | [diff] [blame] | 390 | SDHCI_QUIRK_RESET_AFTER_REQUEST | |
Pierre Ossman | 86a6a87 | 2009-02-02 21:13:49 +0100 | [diff] [blame] | 391 | SDHCI_QUIRK_BROKEN_SMALL_PIO; |
Pierre Ossman | 93fc48c | 2008-06-28 18:21:41 +0200 | [diff] [blame] | 392 | } |
| 393 | |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 394 | /* |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 395 | * JMicron chips can have two interfaces to the same hardware |
| 396 | * in order to work around limitations in Microsoft's driver. |
| 397 | * We need to make sure we only bind to one of them. |
| 398 | * |
| 399 | * This code assumes two things: |
| 400 | * |
| 401 | * 1. The PCI code adds subfunctions in order. |
| 402 | * |
| 403 | * 2. The MMC interface has a lower subfunction number |
| 404 | * than the SD interface. |
| 405 | */ |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 406 | if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD) |
| 407 | mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC; |
| 408 | else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD) |
| 409 | mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD; |
| 410 | |
| 411 | if (mmcdev) { |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 412 | struct pci_dev *sd_dev; |
| 413 | |
| 414 | sd_dev = NULL; |
| 415 | while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON, |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 416 | mmcdev, sd_dev)) != NULL) { |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 417 | if ((PCI_SLOT(chip->pdev->devfn) == |
| 418 | PCI_SLOT(sd_dev->devfn)) && |
| 419 | (chip->pdev->bus == sd_dev->bus)) |
| 420 | break; |
| 421 | } |
| 422 | |
| 423 | if (sd_dev) { |
| 424 | pci_dev_put(sd_dev); |
| 425 | dev_info(&chip->pdev->dev, "Refusing to bind to " |
| 426 | "secondary interface.\n"); |
| 427 | return -ENODEV; |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | /* |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 432 | * JMicron chips need a bit of a nudge to enable the power |
| 433 | * output pins. |
| 434 | */ |
| 435 | ret = jmicron_pmos(chip, 1); |
| 436 | if (ret) { |
| 437 | dev_err(&chip->pdev->dev, "Failure enabling card power\n"); |
| 438 | return ret; |
| 439 | } |
| 440 | |
Takashi Iwai | 82b0e23 | 2011-04-21 20:26:38 +0200 | [diff] [blame] | 441 | /* quirk for unsable RO-detection on JM388 chips */ |
| 442 | if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD || |
| 443 | chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) |
| 444 | chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT; |
| 445 | |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 446 | return 0; |
| 447 | } |
| 448 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 449 | static void jmicron_enable_mmc(struct sdhci_host *host, int on) |
| 450 | { |
| 451 | u8 scratch; |
| 452 | |
| 453 | scratch = readb(host->ioaddr + 0xC0); |
| 454 | |
| 455 | if (on) |
| 456 | scratch |= 0x01; |
| 457 | else |
| 458 | scratch &= ~0x01; |
| 459 | |
| 460 | writeb(scratch, host->ioaddr + 0xC0); |
| 461 | } |
| 462 | |
| 463 | static int jmicron_probe_slot(struct sdhci_pci_slot *slot) |
| 464 | { |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 465 | if (slot->chip->pdev->revision == 0) { |
| 466 | u16 version; |
| 467 | |
| 468 | version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION); |
| 469 | version = (version & SDHCI_VENDOR_VER_MASK) >> |
| 470 | SDHCI_VENDOR_VER_SHIFT; |
| 471 | |
| 472 | /* |
| 473 | * Older versions of the chip have lots of nasty glitches |
| 474 | * in the ADMA engine. It's best just to avoid it |
| 475 | * completely. |
| 476 | */ |
| 477 | if (version < 0xAC) |
| 478 | slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA; |
| 479 | } |
| 480 | |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 481 | /* JM388 MMC doesn't support 1.8V while SD supports it */ |
| 482 | if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) { |
| 483 | slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 | |
| 484 | MMC_VDD_29_30 | MMC_VDD_30_31 | |
| 485 | MMC_VDD_165_195; /* allow 1.8V */ |
| 486 | slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 | |
| 487 | MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */ |
| 488 | } |
| 489 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 490 | /* |
| 491 | * The secondary interface requires a bit set to get the |
| 492 | * interrupts. |
| 493 | */ |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 494 | if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC || |
| 495 | slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 496 | jmicron_enable_mmc(slot->host, 1); |
| 497 | |
Takashi Iwai | d75c108 | 2010-12-16 17:54:14 +0100 | [diff] [blame] | 498 | slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST; |
| 499 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 500 | return 0; |
| 501 | } |
| 502 | |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 503 | static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead) |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 504 | { |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 505 | if (dead) |
| 506 | return; |
| 507 | |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 508 | if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC || |
| 509 | slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 510 | jmicron_enable_mmc(slot->host, 0); |
| 511 | } |
| 512 | |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 513 | static int jmicron_suspend(struct sdhci_pci_chip *chip) |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 514 | { |
| 515 | int i; |
| 516 | |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 517 | if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC || |
| 518 | chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) { |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 519 | for (i = 0; i < chip->num_slots; i++) |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 520 | jmicron_enable_mmc(chip->slots[i]->host, 0); |
| 521 | } |
| 522 | |
| 523 | return 0; |
| 524 | } |
| 525 | |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 526 | static int jmicron_resume(struct sdhci_pci_chip *chip) |
| 527 | { |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 528 | int ret, i; |
| 529 | |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 530 | if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC || |
| 531 | chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) { |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 532 | for (i = 0; i < chip->num_slots; i++) |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 533 | jmicron_enable_mmc(chip->slots[i]->host, 1); |
| 534 | } |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 535 | |
| 536 | ret = jmicron_pmos(chip, 1); |
| 537 | if (ret) { |
| 538 | dev_err(&chip->pdev->dev, "Failure enabling card power\n"); |
| 539 | return ret; |
| 540 | } |
| 541 | |
| 542 | return 0; |
| 543 | } |
| 544 | |
Jennifer Li | 26daa1e | 2010-11-17 23:01:59 -0500 | [diff] [blame] | 545 | static const struct sdhci_pci_fixes sdhci_o2 = { |
| 546 | .probe = o2_probe, |
| 547 | }; |
| 548 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 549 | static const struct sdhci_pci_fixes sdhci_jmicron = { |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 550 | .probe = jmicron_probe, |
| 551 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 552 | .probe_slot = jmicron_probe_slot, |
| 553 | .remove_slot = jmicron_remove_slot, |
| 554 | |
| 555 | .suspend = jmicron_suspend, |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 556 | .resume = jmicron_resume, |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 557 | }; |
| 558 | |
Nicolas Pitre | a7a6186 | 2009-12-14 18:01:26 -0800 | [diff] [blame] | 559 | /* SysKonnect CardBus2SDIO extra registers */ |
| 560 | #define SYSKT_CTRL 0x200 |
| 561 | #define SYSKT_RDFIFO_STAT 0x204 |
| 562 | #define SYSKT_WRFIFO_STAT 0x208 |
| 563 | #define SYSKT_POWER_DATA 0x20c |
| 564 | #define SYSKT_POWER_330 0xef |
| 565 | #define SYSKT_POWER_300 0xf8 |
| 566 | #define SYSKT_POWER_184 0xcc |
| 567 | #define SYSKT_POWER_CMD 0x20d |
| 568 | #define SYSKT_POWER_START (1 << 7) |
| 569 | #define SYSKT_POWER_STATUS 0x20e |
| 570 | #define SYSKT_POWER_STATUS_OK (1 << 0) |
| 571 | #define SYSKT_BOARD_REV 0x210 |
| 572 | #define SYSKT_CHIP_REV 0x211 |
| 573 | #define SYSKT_CONF_DATA 0x212 |
| 574 | #define SYSKT_CONF_DATA_1V8 (1 << 2) |
| 575 | #define SYSKT_CONF_DATA_2V5 (1 << 1) |
| 576 | #define SYSKT_CONF_DATA_3V3 (1 << 0) |
| 577 | |
| 578 | static int syskt_probe(struct sdhci_pci_chip *chip) |
| 579 | { |
| 580 | if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) { |
| 581 | chip->pdev->class &= ~0x0000FF; |
| 582 | chip->pdev->class |= PCI_SDHCI_IFDMA; |
| 583 | } |
| 584 | return 0; |
| 585 | } |
| 586 | |
| 587 | static int syskt_probe_slot(struct sdhci_pci_slot *slot) |
| 588 | { |
| 589 | int tm, ps; |
| 590 | |
| 591 | u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV); |
| 592 | u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV); |
| 593 | dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, " |
| 594 | "board rev %d.%d, chip rev %d.%d\n", |
| 595 | board_rev >> 4, board_rev & 0xf, |
| 596 | chip_rev >> 4, chip_rev & 0xf); |
| 597 | if (chip_rev >= 0x20) |
| 598 | slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA; |
| 599 | |
| 600 | writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA); |
| 601 | writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD); |
| 602 | udelay(50); |
| 603 | tm = 10; /* Wait max 1 ms */ |
| 604 | do { |
| 605 | ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS); |
| 606 | if (ps & SYSKT_POWER_STATUS_OK) |
| 607 | break; |
| 608 | udelay(100); |
| 609 | } while (--tm); |
| 610 | if (!tm) { |
| 611 | dev_err(&slot->chip->pdev->dev, |
| 612 | "power regulator never stabilized"); |
| 613 | writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD); |
| 614 | return -ENODEV; |
| 615 | } |
| 616 | |
| 617 | return 0; |
| 618 | } |
| 619 | |
| 620 | static const struct sdhci_pci_fixes sdhci_syskt = { |
| 621 | .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER, |
| 622 | .probe = syskt_probe, |
| 623 | .probe_slot = syskt_probe_slot, |
| 624 | }; |
| 625 | |
Harald Welte | 557b069 | 2009-06-18 16:53:38 +0200 | [diff] [blame] | 626 | static int via_probe(struct sdhci_pci_chip *chip) |
| 627 | { |
| 628 | if (chip->pdev->revision == 0x10) |
| 629 | chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER; |
| 630 | |
| 631 | return 0; |
| 632 | } |
| 633 | |
| 634 | static const struct sdhci_pci_fixes sdhci_via = { |
| 635 | .probe = via_probe, |
| 636 | }; |
| 637 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 638 | static const struct pci_device_id pci_ids[] __devinitdata = { |
| 639 | { |
| 640 | .vendor = PCI_VENDOR_ID_RICOH, |
| 641 | .device = PCI_DEVICE_ID_RICOH_R5C822, |
| 642 | .subvendor = PCI_ANY_ID, |
| 643 | .subdevice = PCI_ANY_ID, |
| 644 | .driver_data = (kernel_ulong_t)&sdhci_ricoh, |
| 645 | }, |
| 646 | |
| 647 | { |
Maxim Levitsky | ccc92c2 | 2010-08-10 18:01:42 -0700 | [diff] [blame] | 648 | .vendor = PCI_VENDOR_ID_RICOH, |
| 649 | .device = 0x843, |
| 650 | .subvendor = PCI_ANY_ID, |
| 651 | .subdevice = PCI_ANY_ID, |
| 652 | .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc, |
| 653 | }, |
| 654 | |
| 655 | { |
Pablo Castillo | 568133e | 2010-08-10 18:02:01 -0700 | [diff] [blame] | 656 | .vendor = PCI_VENDOR_ID_RICOH, |
| 657 | .device = 0xe822, |
| 658 | .subvendor = PCI_ANY_ID, |
| 659 | .subdevice = PCI_ANY_ID, |
| 660 | .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc, |
| 661 | }, |
| 662 | |
| 663 | { |
Manoj Iyer | 5fd11c0 | 2011-02-11 16:25:31 -0600 | [diff] [blame] | 664 | .vendor = PCI_VENDOR_ID_RICOH, |
| 665 | .device = 0xe823, |
| 666 | .subvendor = PCI_ANY_ID, |
| 667 | .subdevice = PCI_ANY_ID, |
| 668 | .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc, |
| 669 | }, |
| 670 | |
| 671 | { |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 672 | .vendor = PCI_VENDOR_ID_ENE, |
| 673 | .device = PCI_DEVICE_ID_ENE_CB712_SD, |
| 674 | .subvendor = PCI_ANY_ID, |
| 675 | .subdevice = PCI_ANY_ID, |
| 676 | .driver_data = (kernel_ulong_t)&sdhci_ene_712, |
| 677 | }, |
| 678 | |
| 679 | { |
| 680 | .vendor = PCI_VENDOR_ID_ENE, |
| 681 | .device = PCI_DEVICE_ID_ENE_CB712_SD_2, |
| 682 | .subvendor = PCI_ANY_ID, |
| 683 | .subdevice = PCI_ANY_ID, |
| 684 | .driver_data = (kernel_ulong_t)&sdhci_ene_712, |
| 685 | }, |
| 686 | |
| 687 | { |
| 688 | .vendor = PCI_VENDOR_ID_ENE, |
| 689 | .device = PCI_DEVICE_ID_ENE_CB714_SD, |
| 690 | .subvendor = PCI_ANY_ID, |
| 691 | .subdevice = PCI_ANY_ID, |
| 692 | .driver_data = (kernel_ulong_t)&sdhci_ene_714, |
| 693 | }, |
| 694 | |
| 695 | { |
| 696 | .vendor = PCI_VENDOR_ID_ENE, |
| 697 | .device = PCI_DEVICE_ID_ENE_CB714_SD_2, |
| 698 | .subvendor = PCI_ANY_ID, |
| 699 | .subdevice = PCI_ANY_ID, |
| 700 | .driver_data = (kernel_ulong_t)&sdhci_ene_714, |
| 701 | }, |
| 702 | |
| 703 | { |
| 704 | .vendor = PCI_VENDOR_ID_MARVELL, |
David Woodhouse | 8c5eb88 | 2008-09-03 09:45:57 +0100 | [diff] [blame] | 705 | .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD, |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 706 | .subvendor = PCI_ANY_ID, |
| 707 | .subdevice = PCI_ANY_ID, |
| 708 | .driver_data = (kernel_ulong_t)&sdhci_cafe, |
| 709 | }, |
| 710 | |
| 711 | { |
| 712 | .vendor = PCI_VENDOR_ID_JMICRON, |
| 713 | .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD, |
| 714 | .subvendor = PCI_ANY_ID, |
| 715 | .subdevice = PCI_ANY_ID, |
| 716 | .driver_data = (kernel_ulong_t)&sdhci_jmicron, |
| 717 | }, |
| 718 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 719 | { |
| 720 | .vendor = PCI_VENDOR_ID_JMICRON, |
| 721 | .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC, |
| 722 | .subvendor = PCI_ANY_ID, |
| 723 | .subdevice = PCI_ANY_ID, |
| 724 | .driver_data = (kernel_ulong_t)&sdhci_jmicron, |
| 725 | }, |
| 726 | |
Harald Welte | 557b069 | 2009-06-18 16:53:38 +0200 | [diff] [blame] | 727 | { |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 728 | .vendor = PCI_VENDOR_ID_JMICRON, |
| 729 | .device = PCI_DEVICE_ID_JMICRON_JMB388_SD, |
| 730 | .subvendor = PCI_ANY_ID, |
| 731 | .subdevice = PCI_ANY_ID, |
| 732 | .driver_data = (kernel_ulong_t)&sdhci_jmicron, |
| 733 | }, |
| 734 | |
| 735 | { |
| 736 | .vendor = PCI_VENDOR_ID_JMICRON, |
| 737 | .device = PCI_DEVICE_ID_JMICRON_JMB388_ESD, |
| 738 | .subvendor = PCI_ANY_ID, |
| 739 | .subdevice = PCI_ANY_ID, |
| 740 | .driver_data = (kernel_ulong_t)&sdhci_jmicron, |
| 741 | }, |
| 742 | |
| 743 | { |
Nicolas Pitre | a7a6186 | 2009-12-14 18:01:26 -0800 | [diff] [blame] | 744 | .vendor = PCI_VENDOR_ID_SYSKONNECT, |
| 745 | .device = 0x8000, |
| 746 | .subvendor = PCI_ANY_ID, |
| 747 | .subdevice = PCI_ANY_ID, |
| 748 | .driver_data = (kernel_ulong_t)&sdhci_syskt, |
| 749 | }, |
| 750 | |
| 751 | { |
Harald Welte | 557b069 | 2009-06-18 16:53:38 +0200 | [diff] [blame] | 752 | .vendor = PCI_VENDOR_ID_VIA, |
| 753 | .device = 0x95d0, |
| 754 | .subvendor = PCI_ANY_ID, |
| 755 | .subdevice = PCI_ANY_ID, |
| 756 | .driver_data = (kernel_ulong_t)&sdhci_via, |
| 757 | }, |
| 758 | |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 759 | { |
| 760 | .vendor = PCI_VENDOR_ID_INTEL, |
Alan Cox | f9ee3ea | 2010-10-04 15:25:11 +0100 | [diff] [blame] | 761 | .device = PCI_DEVICE_ID_INTEL_MRST_SD0, |
| 762 | .subvendor = PCI_ANY_ID, |
| 763 | .subdevice = PCI_ANY_ID, |
| 764 | .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc0, |
| 765 | }, |
| 766 | |
| 767 | { |
| 768 | .vendor = PCI_VENDOR_ID_INTEL, |
| 769 | .device = PCI_DEVICE_ID_INTEL_MRST_SD1, |
| 770 | .subvendor = PCI_ANY_ID, |
| 771 | .subdevice = PCI_ANY_ID, |
Jacob Pan | 35ac6f0 | 2010-11-09 13:57:29 +0000 | [diff] [blame] | 772 | .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2, |
| 773 | }, |
| 774 | |
| 775 | { |
| 776 | .vendor = PCI_VENDOR_ID_INTEL, |
| 777 | .device = PCI_DEVICE_ID_INTEL_MRST_SD2, |
| 778 | .subvendor = PCI_ANY_ID, |
| 779 | .subdevice = PCI_ANY_ID, |
| 780 | .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2, |
Alan Cox | f9ee3ea | 2010-10-04 15:25:11 +0100 | [diff] [blame] | 781 | }, |
| 782 | |
| 783 | { |
| 784 | .vendor = PCI_VENDOR_ID_INTEL, |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 785 | .device = PCI_DEVICE_ID_INTEL_MFD_SD, |
| 786 | .subvendor = PCI_ANY_ID, |
| 787 | .subdevice = PCI_ANY_ID, |
| 788 | .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd, |
| 789 | }, |
| 790 | |
| 791 | { |
| 792 | .vendor = PCI_VENDOR_ID_INTEL, |
| 793 | .device = PCI_DEVICE_ID_INTEL_MFD_SDIO1, |
| 794 | .subvendor = PCI_ANY_ID, |
| 795 | .subdevice = PCI_ANY_ID, |
Adrian Hunter | 0d013bc | 2011-06-29 14:23:47 +0300 | [diff] [blame] | 796 | .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio, |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 797 | }, |
| 798 | |
| 799 | { |
| 800 | .vendor = PCI_VENDOR_ID_INTEL, |
| 801 | .device = PCI_DEVICE_ID_INTEL_MFD_SDIO2, |
| 802 | .subvendor = PCI_ANY_ID, |
| 803 | .subdevice = PCI_ANY_ID, |
Adrian Hunter | 0d013bc | 2011-06-29 14:23:47 +0300 | [diff] [blame] | 804 | .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio, |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 805 | }, |
| 806 | |
| 807 | { |
| 808 | .vendor = PCI_VENDOR_ID_INTEL, |
| 809 | .device = PCI_DEVICE_ID_INTEL_MFD_EMMC0, |
| 810 | .subvendor = PCI_ANY_ID, |
| 811 | .subdevice = PCI_ANY_ID, |
Adrian Hunter | 0d013bc | 2011-06-29 14:23:47 +0300 | [diff] [blame] | 812 | .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc, |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 813 | }, |
| 814 | |
| 815 | { |
| 816 | .vendor = PCI_VENDOR_ID_INTEL, |
| 817 | .device = PCI_DEVICE_ID_INTEL_MFD_EMMC1, |
| 818 | .subvendor = PCI_ANY_ID, |
| 819 | .subdevice = PCI_ANY_ID, |
Adrian Hunter | 0d013bc | 2011-06-29 14:23:47 +0300 | [diff] [blame] | 820 | .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc, |
Xiaochen Shen | 2922905 | 2010-10-04 15:24:52 +0100 | [diff] [blame] | 821 | }, |
| 822 | |
Jennifer Li | 26daa1e | 2010-11-17 23:01:59 -0500 | [diff] [blame] | 823 | { |
| 824 | .vendor = PCI_VENDOR_ID_O2, |
| 825 | .device = PCI_DEVICE_ID_O2_8120, |
| 826 | .subvendor = PCI_ANY_ID, |
| 827 | .subdevice = PCI_ANY_ID, |
| 828 | .driver_data = (kernel_ulong_t)&sdhci_o2, |
| 829 | }, |
| 830 | |
| 831 | { |
| 832 | .vendor = PCI_VENDOR_ID_O2, |
| 833 | .device = PCI_DEVICE_ID_O2_8220, |
| 834 | .subvendor = PCI_ANY_ID, |
| 835 | .subdevice = PCI_ANY_ID, |
| 836 | .driver_data = (kernel_ulong_t)&sdhci_o2, |
| 837 | }, |
| 838 | |
| 839 | { |
| 840 | .vendor = PCI_VENDOR_ID_O2, |
| 841 | .device = PCI_DEVICE_ID_O2_8221, |
| 842 | .subvendor = PCI_ANY_ID, |
| 843 | .subdevice = PCI_ANY_ID, |
| 844 | .driver_data = (kernel_ulong_t)&sdhci_o2, |
| 845 | }, |
| 846 | |
| 847 | { |
| 848 | .vendor = PCI_VENDOR_ID_O2, |
| 849 | .device = PCI_DEVICE_ID_O2_8320, |
| 850 | .subvendor = PCI_ANY_ID, |
| 851 | .subdevice = PCI_ANY_ID, |
| 852 | .driver_data = (kernel_ulong_t)&sdhci_o2, |
| 853 | }, |
| 854 | |
| 855 | { |
| 856 | .vendor = PCI_VENDOR_ID_O2, |
| 857 | .device = PCI_DEVICE_ID_O2_8321, |
| 858 | .subvendor = PCI_ANY_ID, |
| 859 | .subdevice = PCI_ANY_ID, |
| 860 | .driver_data = (kernel_ulong_t)&sdhci_o2, |
| 861 | }, |
| 862 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 863 | { /* Generic SD host controller */ |
| 864 | PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00) |
| 865 | }, |
| 866 | |
| 867 | { /* end: all zeroes */ }, |
| 868 | }; |
| 869 | |
| 870 | MODULE_DEVICE_TABLE(pci, pci_ids); |
| 871 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 872 | /*****************************************************************************\ |
| 873 | * * |
| 874 | * SDHCI core callbacks * |
| 875 | * * |
| 876 | \*****************************************************************************/ |
| 877 | |
| 878 | static int sdhci_pci_enable_dma(struct sdhci_host *host) |
| 879 | { |
| 880 | struct sdhci_pci_slot *slot; |
| 881 | struct pci_dev *pdev; |
| 882 | int ret; |
| 883 | |
| 884 | slot = sdhci_priv(host); |
| 885 | pdev = slot->chip->pdev; |
| 886 | |
| 887 | if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) && |
| 888 | ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) && |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 889 | (host->flags & SDHCI_USE_SDMA)) { |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 890 | dev_warn(&pdev->dev, "Will use DMA mode even though HW " |
| 891 | "doesn't fully claim to support it.\n"); |
| 892 | } |
| 893 | |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 894 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 895 | if (ret) |
| 896 | return ret; |
| 897 | |
| 898 | pci_set_master(pdev); |
| 899 | |
| 900 | return 0; |
| 901 | } |
| 902 | |
Major Lee | 68077b0 | 2011-06-29 14:23:46 +0300 | [diff] [blame] | 903 | static int sdhci_pci_8bit_width(struct sdhci_host *host, int width) |
| 904 | { |
| 905 | u8 ctrl; |
| 906 | |
| 907 | ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); |
| 908 | |
| 909 | switch (width) { |
| 910 | case MMC_BUS_WIDTH_8: |
| 911 | ctrl |= SDHCI_CTRL_8BITBUS; |
| 912 | ctrl &= ~SDHCI_CTRL_4BITBUS; |
| 913 | break; |
| 914 | case MMC_BUS_WIDTH_4: |
| 915 | ctrl |= SDHCI_CTRL_4BITBUS; |
| 916 | ctrl &= ~SDHCI_CTRL_8BITBUS; |
| 917 | break; |
| 918 | default: |
| 919 | ctrl &= ~(SDHCI_CTRL_8BITBUS | SDHCI_CTRL_4BITBUS); |
| 920 | break; |
| 921 | } |
| 922 | |
| 923 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
| 924 | |
| 925 | return 0; |
| 926 | } |
| 927 | |
Adrian Hunter | 0f20165 | 2011-08-29 16:42:13 +0300 | [diff] [blame] | 928 | static void sdhci_pci_hw_reset(struct sdhci_host *host) |
| 929 | { |
| 930 | struct sdhci_pci_slot *slot = sdhci_priv(host); |
| 931 | int rst_n_gpio = slot->rst_n_gpio; |
| 932 | |
| 933 | if (!gpio_is_valid(rst_n_gpio)) |
| 934 | return; |
| 935 | gpio_set_value_cansleep(rst_n_gpio, 0); |
| 936 | /* For eMMC, minimum is 1us but give it 10us for good measure */ |
| 937 | udelay(10); |
| 938 | gpio_set_value_cansleep(rst_n_gpio, 1); |
| 939 | /* For eMMC, minimum is 200us but give it 300us for good measure */ |
| 940 | usleep_range(300, 1000); |
| 941 | } |
| 942 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 943 | static struct sdhci_ops sdhci_pci_ops = { |
| 944 | .enable_dma = sdhci_pci_enable_dma, |
Major Lee | 68077b0 | 2011-06-29 14:23:46 +0300 | [diff] [blame] | 945 | .platform_8bit_width = sdhci_pci_8bit_width, |
Adrian Hunter | 0f20165 | 2011-08-29 16:42:13 +0300 | [diff] [blame] | 946 | .hw_reset = sdhci_pci_hw_reset, |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 947 | }; |
| 948 | |
| 949 | /*****************************************************************************\ |
| 950 | * * |
| 951 | * Suspend/resume * |
| 952 | * * |
| 953 | \*****************************************************************************/ |
| 954 | |
| 955 | #ifdef CONFIG_PM |
| 956 | |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 957 | static int sdhci_pci_suspend(struct device *dev) |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 958 | { |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 959 | struct pci_dev *pdev = to_pci_dev(dev); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 960 | struct sdhci_pci_chip *chip; |
| 961 | struct sdhci_pci_slot *slot; |
Daniel Drake | 5f61970 | 2010-11-04 22:20:39 +0000 | [diff] [blame] | 962 | mmc_pm_flag_t slot_pm_flags; |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 963 | mmc_pm_flag_t pm_flags = 0; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 964 | int i, ret; |
| 965 | |
| 966 | chip = pci_get_drvdata(pdev); |
| 967 | if (!chip) |
| 968 | return 0; |
| 969 | |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 970 | for (i = 0; i < chip->num_slots; i++) { |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 971 | slot = chip->slots[i]; |
| 972 | if (!slot) |
| 973 | continue; |
| 974 | |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 975 | ret = sdhci_suspend_host(slot->host); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 976 | |
Axel Lin | b678b91 | 2011-12-03 15:28:05 +0800 | [diff] [blame] | 977 | if (ret) |
| 978 | goto err_pci_suspend; |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 979 | |
Daniel Drake | 5f61970 | 2010-11-04 22:20:39 +0000 | [diff] [blame] | 980 | slot_pm_flags = slot->host->mmc->pm_flags; |
| 981 | if (slot_pm_flags & MMC_PM_WAKE_SDIO_IRQ) |
| 982 | sdhci_enable_irq_wakeups(slot->host); |
| 983 | |
| 984 | pm_flags |= slot_pm_flags; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 985 | } |
| 986 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 987 | if (chip->fixes && chip->fixes->suspend) { |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 988 | ret = chip->fixes->suspend(chip); |
Axel Lin | b678b91 | 2011-12-03 15:28:05 +0800 | [diff] [blame] | 989 | if (ret) |
| 990 | goto err_pci_suspend; |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 991 | } |
| 992 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 993 | pci_save_state(pdev); |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 994 | if (pm_flags & MMC_PM_KEEP_POWER) { |
Daniel Drake | 5f61970 | 2010-11-04 22:20:39 +0000 | [diff] [blame] | 995 | if (pm_flags & MMC_PM_WAKE_SDIO_IRQ) { |
| 996 | pci_pme_active(pdev, true); |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 997 | pci_enable_wake(pdev, PCI_D3hot, 1); |
Daniel Drake | 5f61970 | 2010-11-04 22:20:39 +0000 | [diff] [blame] | 998 | } |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 999 | pci_set_power_state(pdev, PCI_D3hot); |
| 1000 | } else { |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 1001 | pci_enable_wake(pdev, PCI_D3hot, 0); |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 1002 | pci_disable_device(pdev); |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 1003 | pci_set_power_state(pdev, PCI_D3hot); |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 1004 | } |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1005 | |
| 1006 | return 0; |
Axel Lin | b678b91 | 2011-12-03 15:28:05 +0800 | [diff] [blame] | 1007 | |
| 1008 | err_pci_suspend: |
| 1009 | while (--i >= 0) |
| 1010 | sdhci_resume_host(chip->slots[i]->host); |
| 1011 | return ret; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1012 | } |
| 1013 | |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 1014 | static int sdhci_pci_resume(struct device *dev) |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1015 | { |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 1016 | struct pci_dev *pdev = to_pci_dev(dev); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1017 | struct sdhci_pci_chip *chip; |
| 1018 | struct sdhci_pci_slot *slot; |
| 1019 | int i, ret; |
| 1020 | |
| 1021 | chip = pci_get_drvdata(pdev); |
| 1022 | if (!chip) |
| 1023 | return 0; |
| 1024 | |
| 1025 | pci_set_power_state(pdev, PCI_D0); |
| 1026 | pci_restore_state(pdev); |
| 1027 | ret = pci_enable_device(pdev); |
| 1028 | if (ret) |
| 1029 | return ret; |
| 1030 | |
Pierre Ossman | 45211e2 | 2008-03-24 13:09:09 +0100 | [diff] [blame] | 1031 | if (chip->fixes && chip->fixes->resume) { |
| 1032 | ret = chip->fixes->resume(chip); |
| 1033 | if (ret) |
| 1034 | return ret; |
| 1035 | } |
| 1036 | |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 1037 | for (i = 0; i < chip->num_slots; i++) { |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1038 | slot = chip->slots[i]; |
| 1039 | if (!slot) |
| 1040 | continue; |
| 1041 | |
| 1042 | ret = sdhci_resume_host(slot->host); |
| 1043 | if (ret) |
| 1044 | return ret; |
| 1045 | } |
| 1046 | |
| 1047 | return 0; |
| 1048 | } |
| 1049 | |
| 1050 | #else /* CONFIG_PM */ |
| 1051 | |
| 1052 | #define sdhci_pci_suspend NULL |
| 1053 | #define sdhci_pci_resume NULL |
| 1054 | |
| 1055 | #endif /* CONFIG_PM */ |
| 1056 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1057 | #ifdef CONFIG_PM_RUNTIME |
| 1058 | |
| 1059 | static int sdhci_pci_runtime_suspend(struct device *dev) |
| 1060 | { |
| 1061 | struct pci_dev *pdev = container_of(dev, struct pci_dev, dev); |
| 1062 | struct sdhci_pci_chip *chip; |
| 1063 | struct sdhci_pci_slot *slot; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1064 | int i, ret; |
| 1065 | |
| 1066 | chip = pci_get_drvdata(pdev); |
| 1067 | if (!chip) |
| 1068 | return 0; |
| 1069 | |
| 1070 | for (i = 0; i < chip->num_slots; i++) { |
| 1071 | slot = chip->slots[i]; |
| 1072 | if (!slot) |
| 1073 | continue; |
| 1074 | |
| 1075 | ret = sdhci_runtime_suspend_host(slot->host); |
| 1076 | |
Axel Lin | b678b91 | 2011-12-03 15:28:05 +0800 | [diff] [blame] | 1077 | if (ret) |
| 1078 | goto err_pci_runtime_suspend; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1079 | } |
| 1080 | |
| 1081 | if (chip->fixes && chip->fixes->suspend) { |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 1082 | ret = chip->fixes->suspend(chip); |
Axel Lin | b678b91 | 2011-12-03 15:28:05 +0800 | [diff] [blame] | 1083 | if (ret) |
| 1084 | goto err_pci_runtime_suspend; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | return 0; |
Axel Lin | b678b91 | 2011-12-03 15:28:05 +0800 | [diff] [blame] | 1088 | |
| 1089 | err_pci_runtime_suspend: |
| 1090 | while (--i >= 0) |
| 1091 | sdhci_runtime_resume_host(chip->slots[i]->host); |
| 1092 | return ret; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | static int sdhci_pci_runtime_resume(struct device *dev) |
| 1096 | { |
| 1097 | struct pci_dev *pdev = container_of(dev, struct pci_dev, dev); |
| 1098 | struct sdhci_pci_chip *chip; |
| 1099 | struct sdhci_pci_slot *slot; |
| 1100 | int i, ret; |
| 1101 | |
| 1102 | chip = pci_get_drvdata(pdev); |
| 1103 | if (!chip) |
| 1104 | return 0; |
| 1105 | |
| 1106 | if (chip->fixes && chip->fixes->resume) { |
| 1107 | ret = chip->fixes->resume(chip); |
| 1108 | if (ret) |
| 1109 | return ret; |
| 1110 | } |
| 1111 | |
| 1112 | for (i = 0; i < chip->num_slots; i++) { |
| 1113 | slot = chip->slots[i]; |
| 1114 | if (!slot) |
| 1115 | continue; |
| 1116 | |
| 1117 | ret = sdhci_runtime_resume_host(slot->host); |
| 1118 | if (ret) |
| 1119 | return ret; |
| 1120 | } |
| 1121 | |
| 1122 | return 0; |
| 1123 | } |
| 1124 | |
| 1125 | static int sdhci_pci_runtime_idle(struct device *dev) |
| 1126 | { |
| 1127 | return 0; |
| 1128 | } |
| 1129 | |
| 1130 | #else |
| 1131 | |
| 1132 | #define sdhci_pci_runtime_suspend NULL |
| 1133 | #define sdhci_pci_runtime_resume NULL |
| 1134 | #define sdhci_pci_runtime_idle NULL |
| 1135 | |
| 1136 | #endif |
| 1137 | |
| 1138 | static const struct dev_pm_ops sdhci_pci_pm_ops = { |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 1139 | .suspend = sdhci_pci_suspend, |
| 1140 | .resume = sdhci_pci_resume, |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1141 | .runtime_suspend = sdhci_pci_runtime_suspend, |
| 1142 | .runtime_resume = sdhci_pci_runtime_resume, |
| 1143 | .runtime_idle = sdhci_pci_runtime_idle, |
| 1144 | }; |
| 1145 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1146 | /*****************************************************************************\ |
| 1147 | * * |
| 1148 | * Device probing/removal * |
| 1149 | * * |
| 1150 | \*****************************************************************************/ |
| 1151 | |
| 1152 | static struct sdhci_pci_slot * __devinit sdhci_pci_probe_slot( |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 1153 | struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar, |
| 1154 | int slotno) |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1155 | { |
| 1156 | struct sdhci_pci_slot *slot; |
| 1157 | struct sdhci_host *host; |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 1158 | int ret, bar = first_bar + slotno; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1159 | |
| 1160 | if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) { |
| 1161 | dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar); |
| 1162 | return ERR_PTR(-ENODEV); |
| 1163 | } |
| 1164 | |
| 1165 | if (pci_resource_len(pdev, bar) != 0x100) { |
| 1166 | dev_err(&pdev->dev, "Invalid iomem size. You may " |
| 1167 | "experience problems.\n"); |
| 1168 | } |
| 1169 | |
| 1170 | if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) { |
| 1171 | dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n"); |
| 1172 | return ERR_PTR(-ENODEV); |
| 1173 | } |
| 1174 | |
| 1175 | if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) { |
| 1176 | dev_err(&pdev->dev, "Unknown interface. Aborting.\n"); |
| 1177 | return ERR_PTR(-ENODEV); |
| 1178 | } |
| 1179 | |
| 1180 | host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot)); |
| 1181 | if (IS_ERR(host)) { |
Dan Carpenter | c60a32c | 2009-04-10 23:31:10 +0200 | [diff] [blame] | 1182 | dev_err(&pdev->dev, "cannot allocate host\n"); |
Julia Lawall | dc0fd7b | 2010-05-26 14:42:11 -0700 | [diff] [blame] | 1183 | return ERR_CAST(host); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1184 | } |
| 1185 | |
| 1186 | slot = sdhci_priv(host); |
| 1187 | |
| 1188 | slot->chip = chip; |
| 1189 | slot->host = host; |
| 1190 | slot->pci_bar = bar; |
Adrian Hunter | 0f20165 | 2011-08-29 16:42:13 +0300 | [diff] [blame] | 1191 | slot->rst_n_gpio = -EINVAL; |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 1192 | slot->cd_gpio = -EINVAL; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1193 | |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 1194 | /* Retrieve platform data if there is any */ |
| 1195 | if (*sdhci_pci_get_data) |
| 1196 | slot->data = sdhci_pci_get_data(pdev, slotno); |
| 1197 | |
| 1198 | if (slot->data) { |
| 1199 | if (slot->data->setup) { |
| 1200 | ret = slot->data->setup(slot->data); |
| 1201 | if (ret) { |
| 1202 | dev_err(&pdev->dev, "platform setup failed\n"); |
| 1203 | goto free; |
| 1204 | } |
| 1205 | } |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 1206 | slot->rst_n_gpio = slot->data->rst_n_gpio; |
| 1207 | slot->cd_gpio = slot->data->cd_gpio; |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 1208 | } |
| 1209 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1210 | host->hw_name = "PCI"; |
| 1211 | host->ops = &sdhci_pci_ops; |
| 1212 | host->quirks = chip->quirks; |
Adrian Hunter | f3c55a7 | 2012-02-07 14:48:55 +0200 | [diff] [blame] | 1213 | host->quirks2 = chip->quirks2; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1214 | |
| 1215 | host->irq = pdev->irq; |
| 1216 | |
| 1217 | ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc)); |
| 1218 | if (ret) { |
| 1219 | dev_err(&pdev->dev, "cannot request region\n"); |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 1220 | goto cleanup; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1221 | } |
| 1222 | |
Arjan van de Ven | 092f82e | 2008-09-28 16:15:56 -0700 | [diff] [blame] | 1223 | host->ioaddr = pci_ioremap_bar(pdev, bar); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1224 | if (!host->ioaddr) { |
| 1225 | dev_err(&pdev->dev, "failed to remap registers\n"); |
Chris Ball | 9fdcdbb | 2011-03-29 00:46:12 -0400 | [diff] [blame] | 1226 | ret = -ENOMEM; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1227 | goto release; |
| 1228 | } |
| 1229 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 1230 | if (chip->fixes && chip->fixes->probe_slot) { |
| 1231 | ret = chip->fixes->probe_slot(slot); |
| 1232 | if (ret) |
| 1233 | goto unmap; |
| 1234 | } |
| 1235 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 1236 | if (gpio_is_valid(slot->rst_n_gpio)) { |
| 1237 | if (!gpio_request(slot->rst_n_gpio, "eMMC_reset")) { |
| 1238 | gpio_direction_output(slot->rst_n_gpio, 1); |
| 1239 | slot->host->mmc->caps |= MMC_CAP_HW_RESET; |
| 1240 | } else { |
| 1241 | dev_warn(&pdev->dev, "failed to request rst_n_gpio\n"); |
| 1242 | slot->rst_n_gpio = -EINVAL; |
| 1243 | } |
| 1244 | } |
| 1245 | |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 1246 | host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ; |
| 1247 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1248 | ret = sdhci_add_host(host); |
| 1249 | if (ret) |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 1250 | goto remove; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1251 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 1252 | sdhci_pci_add_own_cd(slot); |
| 1253 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1254 | return slot; |
| 1255 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 1256 | remove: |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 1257 | if (gpio_is_valid(slot->rst_n_gpio)) |
| 1258 | gpio_free(slot->rst_n_gpio); |
| 1259 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 1260 | if (chip->fixes && chip->fixes->remove_slot) |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 1261 | chip->fixes->remove_slot(slot, 0); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 1262 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1263 | unmap: |
| 1264 | iounmap(host->ioaddr); |
| 1265 | |
| 1266 | release: |
| 1267 | pci_release_region(pdev, bar); |
Dan Carpenter | c60a32c | 2009-04-10 23:31:10 +0200 | [diff] [blame] | 1268 | |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 1269 | cleanup: |
| 1270 | if (slot->data && slot->data->cleanup) |
| 1271 | slot->data->cleanup(slot->data); |
| 1272 | |
Dan Carpenter | c60a32c | 2009-04-10 23:31:10 +0200 | [diff] [blame] | 1273 | free: |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1274 | sdhci_free_host(host); |
| 1275 | |
| 1276 | return ERR_PTR(ret); |
| 1277 | } |
| 1278 | |
| 1279 | static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot) |
| 1280 | { |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 1281 | int dead; |
| 1282 | u32 scratch; |
| 1283 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 1284 | sdhci_pci_remove_own_cd(slot); |
| 1285 | |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 1286 | dead = 0; |
| 1287 | scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS); |
| 1288 | if (scratch == (u32)-1) |
| 1289 | dead = 1; |
| 1290 | |
| 1291 | sdhci_remove_host(slot->host, dead); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 1292 | |
Adrian Hunter | c5e027a | 2011-12-27 15:48:44 +0200 | [diff] [blame] | 1293 | if (gpio_is_valid(slot->rst_n_gpio)) |
| 1294 | gpio_free(slot->rst_n_gpio); |
| 1295 | |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 1296 | if (slot->chip->fixes && slot->chip->fixes->remove_slot) |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 1297 | slot->chip->fixes->remove_slot(slot, dead); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 1298 | |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 1299 | if (slot->data && slot->data->cleanup) |
| 1300 | slot->data->cleanup(slot->data); |
| 1301 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1302 | pci_release_region(slot->chip->pdev, slot->pci_bar); |
Pierre Ossman | 4489428 | 2008-04-04 19:36:59 +0200 | [diff] [blame] | 1303 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1304 | sdhci_free_host(slot->host); |
| 1305 | } |
| 1306 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1307 | static void __devinit sdhci_pci_runtime_pm_allow(struct device *dev) |
| 1308 | { |
| 1309 | pm_runtime_put_noidle(dev); |
| 1310 | pm_runtime_allow(dev); |
| 1311 | pm_runtime_set_autosuspend_delay(dev, 50); |
| 1312 | pm_runtime_use_autosuspend(dev); |
| 1313 | pm_suspend_ignore_children(dev, 1); |
| 1314 | } |
| 1315 | |
| 1316 | static void __devexit sdhci_pci_runtime_pm_forbid(struct device *dev) |
| 1317 | { |
| 1318 | pm_runtime_forbid(dev); |
| 1319 | pm_runtime_get_noresume(dev); |
| 1320 | } |
| 1321 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1322 | static int __devinit sdhci_pci_probe(struct pci_dev *pdev, |
| 1323 | const struct pci_device_id *ent) |
| 1324 | { |
| 1325 | struct sdhci_pci_chip *chip; |
| 1326 | struct sdhci_pci_slot *slot; |
| 1327 | |
Sergei Shtylyov | cf5e23e | 2011-03-17 16:46:17 -0400 | [diff] [blame] | 1328 | u8 slots, first_bar; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1329 | int ret, i; |
| 1330 | |
| 1331 | BUG_ON(pdev == NULL); |
| 1332 | BUG_ON(ent == NULL); |
| 1333 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1334 | dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n", |
Sergei Shtylyov | cf5e23e | 2011-03-17 16:46:17 -0400 | [diff] [blame] | 1335 | (int)pdev->vendor, (int)pdev->device, (int)pdev->revision); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1336 | |
| 1337 | ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots); |
| 1338 | if (ret) |
| 1339 | return ret; |
| 1340 | |
| 1341 | slots = PCI_SLOT_INFO_SLOTS(slots) + 1; |
| 1342 | dev_dbg(&pdev->dev, "found %d slot(s)\n", slots); |
| 1343 | if (slots == 0) |
| 1344 | return -ENODEV; |
| 1345 | |
| 1346 | BUG_ON(slots > MAX_SLOTS); |
| 1347 | |
| 1348 | ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar); |
| 1349 | if (ret) |
| 1350 | return ret; |
| 1351 | |
| 1352 | first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK; |
| 1353 | |
| 1354 | if (first_bar > 5) { |
| 1355 | dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n"); |
| 1356 | return -ENODEV; |
| 1357 | } |
| 1358 | |
| 1359 | ret = pci_enable_device(pdev); |
| 1360 | if (ret) |
| 1361 | return ret; |
| 1362 | |
| 1363 | chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL); |
| 1364 | if (!chip) { |
| 1365 | ret = -ENOMEM; |
| 1366 | goto err; |
| 1367 | } |
| 1368 | |
| 1369 | chip->pdev = pdev; |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 1370 | chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data; |
Adrian Hunter | c43fd77 | 2011-10-17 10:52:44 +0300 | [diff] [blame] | 1371 | if (chip->fixes) { |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 1372 | chip->quirks = chip->fixes->quirks; |
Adrian Hunter | f3c55a7 | 2012-02-07 14:48:55 +0200 | [diff] [blame] | 1373 | chip->quirks2 = chip->fixes->quirks2; |
Adrian Hunter | c43fd77 | 2011-10-17 10:52:44 +0300 | [diff] [blame] | 1374 | chip->allow_runtime_pm = chip->fixes->allow_runtime_pm; |
| 1375 | } |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1376 | chip->num_slots = slots; |
| 1377 | |
| 1378 | pci_set_drvdata(pdev, chip); |
| 1379 | |
Pierre Ossman | 2260640 | 2008-03-23 19:33:23 +0100 | [diff] [blame] | 1380 | if (chip->fixes && chip->fixes->probe) { |
| 1381 | ret = chip->fixes->probe(chip); |
| 1382 | if (ret) |
| 1383 | goto free; |
| 1384 | } |
| 1385 | |
Alan Cox | 225d85f | 2010-10-04 15:24:21 +0100 | [diff] [blame] | 1386 | slots = chip->num_slots; /* Quirk may have changed this */ |
| 1387 | |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 1388 | for (i = 0; i < slots; i++) { |
Adrian Hunter | 52c506f | 2011-12-27 15:48:43 +0200 | [diff] [blame] | 1389 | slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1390 | if (IS_ERR(slot)) { |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 1391 | for (i--; i >= 0; i--) |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1392 | sdhci_pci_remove_slot(chip->slots[i]); |
| 1393 | ret = PTR_ERR(slot); |
| 1394 | goto free; |
| 1395 | } |
| 1396 | |
| 1397 | chip->slots[i] = slot; |
| 1398 | } |
| 1399 | |
Adrian Hunter | c43fd77 | 2011-10-17 10:52:44 +0300 | [diff] [blame] | 1400 | if (chip->allow_runtime_pm) |
| 1401 | sdhci_pci_runtime_pm_allow(&pdev->dev); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1402 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1403 | return 0; |
| 1404 | |
| 1405 | free: |
| 1406 | pci_set_drvdata(pdev, NULL); |
| 1407 | kfree(chip); |
| 1408 | |
| 1409 | err: |
| 1410 | pci_disable_device(pdev); |
| 1411 | return ret; |
| 1412 | } |
| 1413 | |
| 1414 | static void __devexit sdhci_pci_remove(struct pci_dev *pdev) |
| 1415 | { |
| 1416 | int i; |
| 1417 | struct sdhci_pci_chip *chip; |
| 1418 | |
| 1419 | chip = pci_get_drvdata(pdev); |
| 1420 | |
| 1421 | if (chip) { |
Adrian Hunter | c43fd77 | 2011-10-17 10:52:44 +0300 | [diff] [blame] | 1422 | if (chip->allow_runtime_pm) |
| 1423 | sdhci_pci_runtime_pm_forbid(&pdev->dev); |
| 1424 | |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 1425 | for (i = 0; i < chip->num_slots; i++) |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1426 | sdhci_pci_remove_slot(chip->slots[i]); |
| 1427 | |
| 1428 | pci_set_drvdata(pdev, NULL); |
| 1429 | kfree(chip); |
| 1430 | } |
| 1431 | |
| 1432 | pci_disable_device(pdev); |
| 1433 | } |
| 1434 | |
| 1435 | static struct pci_driver sdhci_driver = { |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 1436 | .name = "sdhci-pci", |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1437 | .id_table = pci_ids, |
Ameya Palande | b177bc9 | 2011-04-05 21:13:13 +0300 | [diff] [blame] | 1438 | .probe = sdhci_pci_probe, |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1439 | .remove = __devexit_p(sdhci_pci_remove), |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1440 | .driver = { |
| 1441 | .pm = &sdhci_pci_pm_ops |
| 1442 | }, |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1443 | }; |
| 1444 | |
| 1445 | /*****************************************************************************\ |
| 1446 | * * |
| 1447 | * Driver init/exit * |
| 1448 | * * |
| 1449 | \*****************************************************************************/ |
| 1450 | |
| 1451 | static int __init sdhci_drv_init(void) |
| 1452 | { |
| 1453 | return pci_register_driver(&sdhci_driver); |
| 1454 | } |
| 1455 | |
| 1456 | static void __exit sdhci_drv_exit(void) |
| 1457 | { |
| 1458 | pci_unregister_driver(&sdhci_driver); |
| 1459 | } |
| 1460 | |
| 1461 | module_init(sdhci_drv_init); |
| 1462 | module_exit(sdhci_drv_exit); |
| 1463 | |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 1464 | MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>"); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 1465 | MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver"); |
| 1466 | MODULE_LICENSE("GPL"); |