diff options
| author | Tom Rini <trini@ti.com> | 2013-09-20 14:06:10 -0400 |
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-09-20 14:06:10 -0400 |
| commit | d0b961684eb5757211e9463f5f24c3175e453798 (patch) | |
| tree | 8983f37db54071f95c39be404e48b7116b808fda /include/sdhci.h | |
| parent | 03c1bb242548e4e9d267d784861ccd69a1887aa0 (diff) | |
| parent | 2c011847c129491084a19c753a039a3441b7dce4 (diff) | |
| download | olio-uboot-2014.01-d0b961684eb5757211e9463f5f24c3175e453798.tar.xz olio-uboot-2014.01-d0b961684eb5757211e9463f5f24c3175e453798.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-mmc
Diffstat (limited to 'include/sdhci.h')
| -rw-r--r-- | include/sdhci.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sdhci.h b/include/sdhci.h index b18b87312..74d06ae18 100644 --- a/include/sdhci.h +++ b/include/sdhci.h @@ -192,6 +192,8 @@ #define SDHCI_SPEC_200 1 #define SDHCI_SPEC_300 2 +#define SDHCI_GET_VERSION(x) (x->version & SDHCI_SPEC_VER_MASK) + /* * End of controller registers. */ @@ -210,6 +212,7 @@ #define SDHCI_QUIRK_NO_CD (1 << 5) #define SDHCI_QUIRK_WAIT_SEND_CMD (1 << 6) #define SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER (1 << 7) +#define SDHCI_QUIRK_USE_WIDE8 (1 << 8) /* to make gcc happy */ struct sdhci_host; |