diff options
author | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 20:55:21 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 20:55:21 -0400 |
commit | bbb20089a3275a19e475dbc21320c3742e3ca423 (patch) | |
tree | 216fdc1cbef450ca688135c5b8969169482d9a48 /drivers/mmc/host/sdhci.h | |
parent | 3e48e656903e9fd8bc805c6a2c4264d7808d315b (diff) | |
parent | 657a77fa7284d8ae28dfa48f1dc5d919bf5b2843 (diff) |
Merge branch 'dmaengine' into async-tx-next
Conflicts:
crypto/async_tx/async_xor.c
drivers/dma/ioat/dma_v2.h
drivers/dma/ioat/pci.c
drivers/md/raid5.c
Diffstat (limited to 'drivers/mmc/host/sdhci.h')
-rw-r--r-- | drivers/mmc/host/sdhci.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci.h b/drivers/mmc/host/sdhci.h index 65c6f996bbd3..831ddf7dcb49 100644 --- a/drivers/mmc/host/sdhci.h +++ b/drivers/mmc/host/sdhci.h | |||
@@ -226,6 +226,12 @@ struct sdhci_host { | |||
226 | #define SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET (1<<19) | 226 | #define SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET (1<<19) |
227 | /* Controller has to be forced to use block size of 2048 bytes */ | 227 | /* Controller has to be forced to use block size of 2048 bytes */ |
228 | #define SDHCI_QUIRK_FORCE_BLK_SZ_2048 (1<<20) | 228 | #define SDHCI_QUIRK_FORCE_BLK_SZ_2048 (1<<20) |
229 | /* Controller cannot do multi-block transfers */ | ||
230 | #define SDHCI_QUIRK_NO_MULTIBLOCK (1<<21) | ||
231 | /* Controller can only handle 1-bit data transfers */ | ||
232 | #define SDHCI_QUIRK_FORCE_1_BIT_DATA (1<<22) | ||
233 | /* Controller needs 10ms delay between applying power and clock */ | ||
234 | #define SDHCI_QUIRK_DELAY_AFTER_POWER (1<<23) | ||
229 | 235 | ||
230 | int irq; /* Device IRQ */ | 236 | int irq; /* Device IRQ */ |
231 | void __iomem * ioaddr; /* Mapped address */ | 237 | void __iomem * ioaddr; /* Mapped address */ |
@@ -255,7 +261,7 @@ struct sdhci_host { | |||
255 | unsigned int timeout_clk; /* Timeout freq (KHz) */ | 261 | unsigned int timeout_clk; /* Timeout freq (KHz) */ |
256 | 262 | ||
257 | unsigned int clock; /* Current clock (MHz) */ | 263 | unsigned int clock; /* Current clock (MHz) */ |
258 | unsigned short power; /* Current voltage */ | 264 | u8 pwr; /* Current voltage */ |
259 | 265 | ||
260 | struct mmc_request *mrq; /* Current request */ | 266 | struct mmc_request *mrq; /* Current request */ |
261 | struct mmc_command *cmd; /* Current command */ | 267 | struct mmc_command *cmd; /* Current command */ |