Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[deliverable/linux.git] / drivers / mmc / host / sdhci-pci.c
CommitLineData
b8c86fc5
PO
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>
5a0e3ad6 19#include <linux/slab.h>
ccc92c23 20#include <linux/device.h>
b8c86fc5
PO
21
22#include <linux/mmc/host.h>
23
24#include <asm/scatterlist.h>
25#include <asm/io.h>
26
27#include "sdhci.h"
28
29/*
30 * PCI registers
31 */
32
33#define PCI_SDHCI_IFPIO 0x00
34#define PCI_SDHCI_IFDMA 0x01
35#define PCI_SDHCI_IFVENDOR 0x02
36
37#define PCI_SLOT_INFO 0x40 /* 8 bits */
38#define PCI_SLOT_INFO_SLOTS(x) ((x >> 4) & 7)
39#define PCI_SLOT_INFO_FIRST_BAR_MASK 0x07
40
41#define MAX_SLOTS 8
42
22606405 43struct sdhci_pci_chip;
4489428a 44struct sdhci_pci_slot;
22606405
PO
45
46struct sdhci_pci_fixes {
47 unsigned int quirks;
48
49 int (*probe)(struct sdhci_pci_chip*);
45211e21 50
4489428a 51 int (*probe_slot)(struct sdhci_pci_slot*);
1e72859e 52 void (*remove_slot)(struct sdhci_pci_slot*, int);
4489428a
PO
53
54 int (*suspend)(struct sdhci_pci_chip*,
55 pm_message_t);
45211e21 56 int (*resume)(struct sdhci_pci_chip*);
22606405
PO
57};
58
59struct sdhci_pci_slot {
60 struct sdhci_pci_chip *chip;
61 struct sdhci_host *host;
b8c86fc5 62
22606405
PO
63 int pci_bar;
64};
65
66struct sdhci_pci_chip {
67 struct pci_dev *pdev;
68
69 unsigned int quirks;
70 const struct sdhci_pci_fixes *fixes;
71
72 int num_slots; /* Slots on controller */
73 struct sdhci_pci_slot *slots[MAX_SLOTS]; /* Pointers to host slots */
74};
75
76
77/*****************************************************************************\
78 * *
79 * Hardware specific quirk handling *
80 * *
81\*****************************************************************************/
82
83static int ricoh_probe(struct sdhci_pci_chip *chip)
84{
c99436fb
CB
85 if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
86 chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
22606405 87 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
ccc92c23
ML
88 return 0;
89}
90
91static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot)
92{
93 slot->host->caps =
94 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT)
95 & SDHCI_TIMEOUT_CLK_MASK) |
22606405 96
ccc92c23
ML
97 ((0x21 << SDHCI_CLOCK_BASE_SHIFT)
98 & SDHCI_CLOCK_BASE_MASK) |
99
100 SDHCI_TIMEOUT_CLK_UNIT |
101 SDHCI_CAN_VDD_330 |
102 SDHCI_CAN_DO_SDMA;
103 return 0;
104}
105
106static int ricoh_mmc_resume(struct sdhci_pci_chip *chip)
107{
108 /* Apply a delay to allow controller to settle */
109 /* Otherwise it becomes confused if card state changed
110 during suspend */
111 msleep(500);
22606405
PO
112 return 0;
113}
114
115static const struct sdhci_pci_fixes sdhci_ricoh = {
116 .probe = ricoh_probe,
84938294
VK
117 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
118 SDHCI_QUIRK_FORCE_DMA |
119 SDHCI_QUIRK_CLOCK_BEFORE_RESET,
22606405
PO
120};
121
ccc92c23
ML
122static const struct sdhci_pci_fixes sdhci_ricoh_mmc = {
123 .probe_slot = ricoh_mmc_probe_slot,
124 .resume = ricoh_mmc_resume,
125 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
126 SDHCI_QUIRK_CLOCK_BEFORE_RESET |
127 SDHCI_QUIRK_NO_CARD_NO_RESET |
128 SDHCI_QUIRK_MISSING_CAPS
129};
130
22606405
PO
131static const struct sdhci_pci_fixes sdhci_ene_712 = {
132 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
133 SDHCI_QUIRK_BROKEN_DMA,
134};
135
136static const struct sdhci_pci_fixes sdhci_ene_714 = {
137 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
138 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS |
139 SDHCI_QUIRK_BROKEN_DMA,
140};
141
142static const struct sdhci_pci_fixes sdhci_cafe = {
143 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
a0874897 144 SDHCI_QUIRK_NO_BUSY_IRQ |
ee53ab5d 145 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
22606405
PO
146};
147
f9ee3eab
AC
148/*
149 * ADMA operation is disabled for Moorestown platform due to
150 * hardware bugs.
151 */
35ac6f08 152static int mrst_hc_probe(struct sdhci_pci_chip *chip)
f9ee3eab
AC
153{
154 /*
35ac6f08
JP
155 * slots number is fixed here for MRST as SDIO3/5 are never used and
156 * have hardware bugs.
f9ee3eab
AC
157 */
158 chip->num_slots = 1;
159 return 0;
160}
161
162static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
163 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
164};
165
35ac6f08 166static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
f9ee3eab 167 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
35ac6f08 168 .probe = mrst_hc_probe,
f9ee3eab
AC
169};
170
29229052
XS
171static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
172 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
173};
174
175static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc_sdio = {
176 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
177};
178
45211e21
PO
179static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
180{
181 u8 scratch;
182 int ret;
183
184 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
185 if (ret)
186 return ret;
187
188 /*
189 * Turn PMOS on [bit 0], set over current detection to 2.4 V
190 * [bit 1:2] and enable over current debouncing [bit 6].
191 */
192 if (on)
193 scratch |= 0x47;
194 else
195 scratch &= ~0x47;
196
197 ret = pci_write_config_byte(chip->pdev, 0xAE, scratch);
198 if (ret)
199 return ret;
200
201 return 0;
202}
203
204static int jmicron_probe(struct sdhci_pci_chip *chip)
205{
206 int ret;
207
93fc48c7
PO
208 if (chip->pdev->revision == 0) {
209 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
210 SDHCI_QUIRK_32BIT_DMA_SIZE |
2134a922 211 SDHCI_QUIRK_32BIT_ADMA_SIZE |
4a3cba32 212 SDHCI_QUIRK_RESET_AFTER_REQUEST |
86a6a874 213 SDHCI_QUIRK_BROKEN_SMALL_PIO;
93fc48c7
PO
214 }
215
4489428a
PO
216 /*
217 * JMicron chips can have two interfaces to the same hardware
218 * in order to work around limitations in Microsoft's driver.
219 * We need to make sure we only bind to one of them.
220 *
221 * This code assumes two things:
222 *
223 * 1. The PCI code adds subfunctions in order.
224 *
225 * 2. The MMC interface has a lower subfunction number
226 * than the SD interface.
227 */
228 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD) {
229 struct pci_dev *sd_dev;
230
231 sd_dev = NULL;
232 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
233 PCI_DEVICE_ID_JMICRON_JMB38X_MMC, sd_dev)) != NULL) {
234 if ((PCI_SLOT(chip->pdev->devfn) ==
235 PCI_SLOT(sd_dev->devfn)) &&
236 (chip->pdev->bus == sd_dev->bus))
237 break;
238 }
239
240 if (sd_dev) {
241 pci_dev_put(sd_dev);
242 dev_info(&chip->pdev->dev, "Refusing to bind to "
243 "secondary interface.\n");
244 return -ENODEV;
245 }
246 }
247
45211e21
PO
248 /*
249 * JMicron chips need a bit of a nudge to enable the power
250 * output pins.
251 */
252 ret = jmicron_pmos(chip, 1);
253 if (ret) {
254 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
255 return ret;
256 }
257
258 return 0;
259}
260
4489428a
PO
261static void jmicron_enable_mmc(struct sdhci_host *host, int on)
262{
263 u8 scratch;
264
265 scratch = readb(host->ioaddr + 0xC0);
266
267 if (on)
268 scratch |= 0x01;
269 else
270 scratch &= ~0x01;
271
272 writeb(scratch, host->ioaddr + 0xC0);
273}
274
275static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
276{
2134a922
PO
277 if (slot->chip->pdev->revision == 0) {
278 u16 version;
279
280 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
281 version = (version & SDHCI_VENDOR_VER_MASK) >>
282 SDHCI_VENDOR_VER_SHIFT;
283
284 /*
285 * Older versions of the chip have lots of nasty glitches
286 * in the ADMA engine. It's best just to avoid it
287 * completely.
288 */
289 if (version < 0xAC)
290 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
291 }
292
4489428a
PO
293 /*
294 * The secondary interface requires a bit set to get the
295 * interrupts.
296 */
297 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC)
298 jmicron_enable_mmc(slot->host, 1);
299
300 return 0;
301}
302
1e72859e 303static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
4489428a 304{
1e72859e
PO
305 if (dead)
306 return;
307
4489428a
PO
308 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC)
309 jmicron_enable_mmc(slot->host, 0);
310}
311
312static int jmicron_suspend(struct sdhci_pci_chip *chip, pm_message_t state)
313{
314 int i;
315
316 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC) {
317 for (i = 0;i < chip->num_slots;i++)
318 jmicron_enable_mmc(chip->slots[i]->host, 0);
319 }
320
321 return 0;
322}
323
45211e21
PO
324static int jmicron_resume(struct sdhci_pci_chip *chip)
325{
4489428a
PO
326 int ret, i;
327
328 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC) {
329 for (i = 0;i < chip->num_slots;i++)
330 jmicron_enable_mmc(chip->slots[i]->host, 1);
331 }
45211e21
PO
332
333 ret = jmicron_pmos(chip, 1);
334 if (ret) {
335 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
336 return ret;
337 }
338
339 return 0;
340}
341
22606405 342static const struct sdhci_pci_fixes sdhci_jmicron = {
45211e21
PO
343 .probe = jmicron_probe,
344
4489428a
PO
345 .probe_slot = jmicron_probe_slot,
346 .remove_slot = jmicron_remove_slot,
347
348 .suspend = jmicron_suspend,
45211e21 349 .resume = jmicron_resume,
22606405
PO
350};
351
a7a6186c
NP
352/* SysKonnect CardBus2SDIO extra registers */
353#define SYSKT_CTRL 0x200
354#define SYSKT_RDFIFO_STAT 0x204
355#define SYSKT_WRFIFO_STAT 0x208
356#define SYSKT_POWER_DATA 0x20c
357#define SYSKT_POWER_330 0xef
358#define SYSKT_POWER_300 0xf8
359#define SYSKT_POWER_184 0xcc
360#define SYSKT_POWER_CMD 0x20d
361#define SYSKT_POWER_START (1 << 7)
362#define SYSKT_POWER_STATUS 0x20e
363#define SYSKT_POWER_STATUS_OK (1 << 0)
364#define SYSKT_BOARD_REV 0x210
365#define SYSKT_CHIP_REV 0x211
366#define SYSKT_CONF_DATA 0x212
367#define SYSKT_CONF_DATA_1V8 (1 << 2)
368#define SYSKT_CONF_DATA_2V5 (1 << 1)
369#define SYSKT_CONF_DATA_3V3 (1 << 0)
370
371static int syskt_probe(struct sdhci_pci_chip *chip)
372{
373 if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
374 chip->pdev->class &= ~0x0000FF;
375 chip->pdev->class |= PCI_SDHCI_IFDMA;
376 }
377 return 0;
378}
379
380static int syskt_probe_slot(struct sdhci_pci_slot *slot)
381{
382 int tm, ps;
383
384 u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
385 u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
386 dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
387 "board rev %d.%d, chip rev %d.%d\n",
388 board_rev >> 4, board_rev & 0xf,
389 chip_rev >> 4, chip_rev & 0xf);
390 if (chip_rev >= 0x20)
391 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
392
393 writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
394 writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
395 udelay(50);
396 tm = 10; /* Wait max 1 ms */
397 do {
398 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
399 if (ps & SYSKT_POWER_STATUS_OK)
400 break;
401 udelay(100);
402 } while (--tm);
403 if (!tm) {
404 dev_err(&slot->chip->pdev->dev,
405 "power regulator never stabilized");
406 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
407 return -ENODEV;
408 }
409
410 return 0;
411}
412
413static const struct sdhci_pci_fixes sdhci_syskt = {
414 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
415 .probe = syskt_probe,
416 .probe_slot = syskt_probe_slot,
417};
418
557b0697
HW
419static int via_probe(struct sdhci_pci_chip *chip)
420{
421 if (chip->pdev->revision == 0x10)
422 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
423
424 return 0;
425}
426
427static const struct sdhci_pci_fixes sdhci_via = {
428 .probe = via_probe,
429};
430
22606405 431static const struct pci_device_id pci_ids[] __devinitdata = {
b8c86fc5
PO
432 {
433 .vendor = PCI_VENDOR_ID_RICOH,
434 .device = PCI_DEVICE_ID_RICOH_R5C822,
22606405 435 .subvendor = PCI_ANY_ID,
b8c86fc5 436 .subdevice = PCI_ANY_ID,
22606405 437 .driver_data = (kernel_ulong_t)&sdhci_ricoh,
b8c86fc5
PO
438 },
439
ccc92c23
ML
440 {
441 .vendor = PCI_VENDOR_ID_RICOH,
442 .device = 0x843,
443 .subvendor = PCI_ANY_ID,
444 .subdevice = PCI_ANY_ID,
445 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
446 },
447
568133eb
PC
448 {
449 .vendor = PCI_VENDOR_ID_RICOH,
450 .device = 0xe822,
451 .subvendor = PCI_ANY_ID,
452 .subdevice = PCI_ANY_ID,
453 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
454 },
455
b8c86fc5
PO
456 {
457 .vendor = PCI_VENDOR_ID_ENE,
458 .device = PCI_DEVICE_ID_ENE_CB712_SD,
459 .subvendor = PCI_ANY_ID,
460 .subdevice = PCI_ANY_ID,
22606405 461 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
b8c86fc5
PO
462 },
463
464 {
465 .vendor = PCI_VENDOR_ID_ENE,
466 .device = PCI_DEVICE_ID_ENE_CB712_SD_2,
467 .subvendor = PCI_ANY_ID,
468 .subdevice = PCI_ANY_ID,
22606405 469 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
b8c86fc5
PO
470 },
471
472 {
473 .vendor = PCI_VENDOR_ID_ENE,
474 .device = PCI_DEVICE_ID_ENE_CB714_SD,
475 .subvendor = PCI_ANY_ID,
476 .subdevice = PCI_ANY_ID,
22606405 477 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
b8c86fc5
PO
478 },
479
480 {
481 .vendor = PCI_VENDOR_ID_ENE,
482 .device = PCI_DEVICE_ID_ENE_CB714_SD_2,
483 .subvendor = PCI_ANY_ID,
484 .subdevice = PCI_ANY_ID,
22606405 485 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
b8c86fc5
PO
486 },
487
488 {
489 .vendor = PCI_VENDOR_ID_MARVELL,
8c5eb880 490 .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD,
b8c86fc5
PO
491 .subvendor = PCI_ANY_ID,
492 .subdevice = PCI_ANY_ID,
22606405 493 .driver_data = (kernel_ulong_t)&sdhci_cafe,
b8c86fc5
PO
494 },
495
496 {
497 .vendor = PCI_VENDOR_ID_JMICRON,
498 .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD,
499 .subvendor = PCI_ANY_ID,
500 .subdevice = PCI_ANY_ID,
22606405 501 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
b8c86fc5
PO
502 },
503
4489428a
PO
504 {
505 .vendor = PCI_VENDOR_ID_JMICRON,
506 .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC,
507 .subvendor = PCI_ANY_ID,
508 .subdevice = PCI_ANY_ID,
509 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
510 },
511
a7a6186c
NP
512 {
513 .vendor = PCI_VENDOR_ID_SYSKONNECT,
514 .device = 0x8000,
515 .subvendor = PCI_ANY_ID,
516 .subdevice = PCI_ANY_ID,
517 .driver_data = (kernel_ulong_t)&sdhci_syskt,
518 },
519
557b0697
HW
520 {
521 .vendor = PCI_VENDOR_ID_VIA,
522 .device = 0x95d0,
523 .subvendor = PCI_ANY_ID,
524 .subdevice = PCI_ANY_ID,
525 .driver_data = (kernel_ulong_t)&sdhci_via,
526 },
527
29229052
XS
528 {
529 .vendor = PCI_VENDOR_ID_INTEL,
f9ee3eab
AC
530 .device = PCI_DEVICE_ID_INTEL_MRST_SD0,
531 .subvendor = PCI_ANY_ID,
532 .subdevice = PCI_ANY_ID,
533 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc0,
534 },
535
536 {
537 .vendor = PCI_VENDOR_ID_INTEL,
538 .device = PCI_DEVICE_ID_INTEL_MRST_SD1,
539 .subvendor = PCI_ANY_ID,
540 .subdevice = PCI_ANY_ID,
35ac6f08
JP
541 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
542 },
543
544 {
545 .vendor = PCI_VENDOR_ID_INTEL,
546 .device = PCI_DEVICE_ID_INTEL_MRST_SD2,
547 .subvendor = PCI_ANY_ID,
548 .subdevice = PCI_ANY_ID,
549 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
f9ee3eab
AC
550 },
551
552 {
553 .vendor = PCI_VENDOR_ID_INTEL,
29229052
XS
554 .device = PCI_DEVICE_ID_INTEL_MFD_SD,
555 .subvendor = PCI_ANY_ID,
556 .subdevice = PCI_ANY_ID,
557 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
558 },
559
560 {
561 .vendor = PCI_VENDOR_ID_INTEL,
562 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO1,
563 .subvendor = PCI_ANY_ID,
564 .subdevice = PCI_ANY_ID,
565 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc_sdio,
566 },
567
568 {
569 .vendor = PCI_VENDOR_ID_INTEL,
570 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO2,
571 .subvendor = PCI_ANY_ID,
572 .subdevice = PCI_ANY_ID,
573 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc_sdio,
574 },
575
576 {
577 .vendor = PCI_VENDOR_ID_INTEL,
578 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC0,
579 .subvendor = PCI_ANY_ID,
580 .subdevice = PCI_ANY_ID,
581 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc_sdio,
582 },
583
584 {
585 .vendor = PCI_VENDOR_ID_INTEL,
586 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC1,
587 .subvendor = PCI_ANY_ID,
588 .subdevice = PCI_ANY_ID,
589 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc_sdio,
590 },
591
b8c86fc5
PO
592 { /* Generic SD host controller */
593 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00)
594 },
595
596 { /* end: all zeroes */ },
597};
598
599MODULE_DEVICE_TABLE(pci, pci_ids);
600
b8c86fc5
PO
601/*****************************************************************************\
602 * *
603 * SDHCI core callbacks *
604 * *
605\*****************************************************************************/
606
607static int sdhci_pci_enable_dma(struct sdhci_host *host)
608{
609 struct sdhci_pci_slot *slot;
610 struct pci_dev *pdev;
611 int ret;
612
613 slot = sdhci_priv(host);
614 pdev = slot->chip->pdev;
615
616 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
617 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
a13abc7b 618 (host->flags & SDHCI_USE_SDMA)) {
b8c86fc5
PO
619 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
620 "doesn't fully claim to support it.\n");
621 }
622
284901a9 623 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
b8c86fc5
PO
624 if (ret)
625 return ret;
626
627 pci_set_master(pdev);
628
629 return 0;
630}
631
632static struct sdhci_ops sdhci_pci_ops = {
633 .enable_dma = sdhci_pci_enable_dma,
634};
635
636/*****************************************************************************\
637 * *
638 * Suspend/resume *
639 * *
640\*****************************************************************************/
641
642#ifdef CONFIG_PM
643
644static int sdhci_pci_suspend (struct pci_dev *pdev, pm_message_t state)
645{
646 struct sdhci_pci_chip *chip;
647 struct sdhci_pci_slot *slot;
5f619704 648 mmc_pm_flag_t slot_pm_flags;
2f4cbb3d 649 mmc_pm_flag_t pm_flags = 0;
b8c86fc5
PO
650 int i, ret;
651
652 chip = pci_get_drvdata(pdev);
653 if (!chip)
654 return 0;
655
656 for (i = 0;i < chip->num_slots;i++) {
657 slot = chip->slots[i];
658 if (!slot)
659 continue;
660
661 ret = sdhci_suspend_host(slot->host, state);
662
663 if (ret) {
664 for (i--;i >= 0;i--)
665 sdhci_resume_host(chip->slots[i]->host);
666 return ret;
667 }
2f4cbb3d 668
5f619704
DD
669 slot_pm_flags = slot->host->mmc->pm_flags;
670 if (slot_pm_flags & MMC_PM_WAKE_SDIO_IRQ)
671 sdhci_enable_irq_wakeups(slot->host);
672
673 pm_flags |= slot_pm_flags;
b8c86fc5
PO
674 }
675
4489428a
PO
676 if (chip->fixes && chip->fixes->suspend) {
677 ret = chip->fixes->suspend(chip, state);
678 if (ret) {
679 for (i = chip->num_slots - 1;i >= 0;i--)
680 sdhci_resume_host(chip->slots[i]->host);
681 return ret;
682 }
683 }
684
b8c86fc5 685 pci_save_state(pdev);
2f4cbb3d 686 if (pm_flags & MMC_PM_KEEP_POWER) {
5f619704
DD
687 if (pm_flags & MMC_PM_WAKE_SDIO_IRQ) {
688 pci_pme_active(pdev, true);
2f4cbb3d 689 pci_enable_wake(pdev, PCI_D3hot, 1);
5f619704 690 }
2f4cbb3d
NP
691 pci_set_power_state(pdev, PCI_D3hot);
692 } else {
693 pci_enable_wake(pdev, pci_choose_state(pdev, state), 0);
694 pci_disable_device(pdev);
695 pci_set_power_state(pdev, pci_choose_state(pdev, state));
696 }
b8c86fc5
PO
697
698 return 0;
699}
700
701static int sdhci_pci_resume (struct pci_dev *pdev)
702{
703 struct sdhci_pci_chip *chip;
704 struct sdhci_pci_slot *slot;
705 int i, ret;
706
707 chip = pci_get_drvdata(pdev);
708 if (!chip)
709 return 0;
710
711 pci_set_power_state(pdev, PCI_D0);
712 pci_restore_state(pdev);
713 ret = pci_enable_device(pdev);
714 if (ret)
715 return ret;
716
45211e21
PO
717 if (chip->fixes && chip->fixes->resume) {
718 ret = chip->fixes->resume(chip);
719 if (ret)
720 return ret;
721 }
722
b8c86fc5
PO
723 for (i = 0;i < chip->num_slots;i++) {
724 slot = chip->slots[i];
725 if (!slot)
726 continue;
727
728 ret = sdhci_resume_host(slot->host);
729 if (ret)
730 return ret;
731 }
732
733 return 0;
734}
735
736#else /* CONFIG_PM */
737
738#define sdhci_pci_suspend NULL
739#define sdhci_pci_resume NULL
740
741#endif /* CONFIG_PM */
742
743/*****************************************************************************\
744 * *
745 * Device probing/removal *
746 * *
747\*****************************************************************************/
748
749static struct sdhci_pci_slot * __devinit sdhci_pci_probe_slot(
750 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int bar)
751{
752 struct sdhci_pci_slot *slot;
753 struct sdhci_host *host;
754
755 resource_size_t addr;
756
757 int ret;
758
759 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
760 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
761 return ERR_PTR(-ENODEV);
762 }
763
764 if (pci_resource_len(pdev, bar) != 0x100) {
765 dev_err(&pdev->dev, "Invalid iomem size. You may "
766 "experience problems.\n");
767 }
768
769 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
770 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
771 return ERR_PTR(-ENODEV);
772 }
773
774 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
775 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
776 return ERR_PTR(-ENODEV);
777 }
778
779 host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot));
780 if (IS_ERR(host)) {
c60a32cd 781 dev_err(&pdev->dev, "cannot allocate host\n");
dc0fd7b5 782 return ERR_CAST(host);
b8c86fc5
PO
783 }
784
785 slot = sdhci_priv(host);
786
787 slot->chip = chip;
788 slot->host = host;
789 slot->pci_bar = bar;
790
791 host->hw_name = "PCI";
792 host->ops = &sdhci_pci_ops;
793 host->quirks = chip->quirks;
794
795 host->irq = pdev->irq;
796
797 ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc));
798 if (ret) {
799 dev_err(&pdev->dev, "cannot request region\n");
c60a32cd 800 goto free;
b8c86fc5
PO
801 }
802
803 addr = pci_resource_start(pdev, bar);
092f82ed 804 host->ioaddr = pci_ioremap_bar(pdev, bar);
b8c86fc5
PO
805 if (!host->ioaddr) {
806 dev_err(&pdev->dev, "failed to remap registers\n");
807 goto release;
808 }
809
4489428a
PO
810 if (chip->fixes && chip->fixes->probe_slot) {
811 ret = chip->fixes->probe_slot(slot);
812 if (ret)
813 goto unmap;
814 }
815
2f4cbb3d
NP
816 host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ;
817
b8c86fc5
PO
818 ret = sdhci_add_host(host);
819 if (ret)
4489428a 820 goto remove;
b8c86fc5
PO
821
822 return slot;
823
4489428a
PO
824remove:
825 if (chip->fixes && chip->fixes->remove_slot)
1e72859e 826 chip->fixes->remove_slot(slot, 0);
4489428a 827
b8c86fc5
PO
828unmap:
829 iounmap(host->ioaddr);
830
831release:
832 pci_release_region(pdev, bar);
c60a32cd
DC
833
834free:
b8c86fc5
PO
835 sdhci_free_host(host);
836
837 return ERR_PTR(ret);
838}
839
840static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
841{
1e72859e
PO
842 int dead;
843 u32 scratch;
844
845 dead = 0;
846 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
847 if (scratch == (u32)-1)
848 dead = 1;
849
850 sdhci_remove_host(slot->host, dead);
4489428a
PO
851
852 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
1e72859e 853 slot->chip->fixes->remove_slot(slot, dead);
4489428a 854
b8c86fc5 855 pci_release_region(slot->chip->pdev, slot->pci_bar);
4489428a 856
b8c86fc5
PO
857 sdhci_free_host(slot->host);
858}
859
860static int __devinit sdhci_pci_probe(struct pci_dev *pdev,
861 const struct pci_device_id *ent)
862{
863 struct sdhci_pci_chip *chip;
864 struct sdhci_pci_slot *slot;
865
866 u8 slots, rev, first_bar;
867 int ret, i;
868
869 BUG_ON(pdev == NULL);
870 BUG_ON(ent == NULL);
871
872 pci_read_config_byte(pdev, PCI_CLASS_REVISION, &rev);
873
874 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
875 (int)pdev->vendor, (int)pdev->device, (int)rev);
876
877 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
878 if (ret)
879 return ret;
880
881 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
882 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
883 if (slots == 0)
884 return -ENODEV;
885
886 BUG_ON(slots > MAX_SLOTS);
887
888 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
889 if (ret)
890 return ret;
891
892 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
893
894 if (first_bar > 5) {
895 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
896 return -ENODEV;
897 }
898
899 ret = pci_enable_device(pdev);
900 if (ret)
901 return ret;
902
903 chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
904 if (!chip) {
905 ret = -ENOMEM;
906 goto err;
907 }
908
909 chip->pdev = pdev;
22606405
PO
910 chip->fixes = (const struct sdhci_pci_fixes*)ent->driver_data;
911 if (chip->fixes)
912 chip->quirks = chip->fixes->quirks;
b8c86fc5
PO
913 chip->num_slots = slots;
914
915 pci_set_drvdata(pdev, chip);
916
22606405
PO
917 if (chip->fixes && chip->fixes->probe) {
918 ret = chip->fixes->probe(chip);
919 if (ret)
920 goto free;
921 }
922
225d85fe
AC
923 slots = chip->num_slots; /* Quirk may have changed this */
924
b8c86fc5
PO
925 for (i = 0;i < slots;i++) {
926 slot = sdhci_pci_probe_slot(pdev, chip, first_bar + i);
927 if (IS_ERR(slot)) {
928 for (i--;i >= 0;i--)
929 sdhci_pci_remove_slot(chip->slots[i]);
930 ret = PTR_ERR(slot);
931 goto free;
932 }
933
934 chip->slots[i] = slot;
935 }
936
937 return 0;
938
939free:
940 pci_set_drvdata(pdev, NULL);
941 kfree(chip);
942
943err:
944 pci_disable_device(pdev);
945 return ret;
946}
947
948static void __devexit sdhci_pci_remove(struct pci_dev *pdev)
949{
950 int i;
951 struct sdhci_pci_chip *chip;
952
953 chip = pci_get_drvdata(pdev);
954
955 if (chip) {
956 for (i = 0;i < chip->num_slots; i++)
957 sdhci_pci_remove_slot(chip->slots[i]);
958
959 pci_set_drvdata(pdev, NULL);
960 kfree(chip);
961 }
962
963 pci_disable_device(pdev);
964}
965
966static struct pci_driver sdhci_driver = {
967 .name = "sdhci-pci",
968 .id_table = pci_ids,
969 .probe = sdhci_pci_probe,
970 .remove = __devexit_p(sdhci_pci_remove),
971 .suspend = sdhci_pci_suspend,
972 .resume = sdhci_pci_resume,
973};
974
975/*****************************************************************************\
976 * *
977 * Driver init/exit *
978 * *
979\*****************************************************************************/
980
981static int __init sdhci_drv_init(void)
982{
983 return pci_register_driver(&sdhci_driver);
984}
985
986static void __exit sdhci_drv_exit(void)
987{
988 pci_unregister_driver(&sdhci_driver);
989}
990
991module_init(sdhci_drv_init);
992module_exit(sdhci_drv_exit);
993
32710e8f 994MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
b8c86fc5
PO
995MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
996MODULE_LICENSE("GPL");
This page took 0.243178 seconds and 5 git commands to generate.