diff options
| author | Thomas Chou <thomas@wytron.com.tw> | 2011-04-19 03:48:32 +0000 | 
|---|---|---|
| committer | Andy Fleming <afleming@freescale.com> | 2011-05-18 14:30:34 -0500 | 
| commit | ed018b21d61614e0431f6bf514bec6e4bf64fe31 (patch) | |
| tree | 846bc03655befabcbc79c0b95baf2d205c6d5ad1 /include/mmc.h | |
| parent | 0ea91423f47461bf7eaed2d4aff198076dd07fd5 (diff) | |
| download | olio-uboot-2014.01-ed018b21d61614e0431f6bf514bec6e4bf64fe31.tar.xz olio-uboot-2014.01-ed018b21d61614e0431f6bf514bec6e4bf64fe31.zip | |
mmc_spi: generate response for send status command
A "send status" command is added with the commit "mmc: checking
status after commands with R1b response". But the status register
returned from send status command of SPI protocol is different from
that of MMC/SD protocol. We do a simple test and generate a response
in stead of full bit-by-bit translation.
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Diffstat (limited to 'include/mmc.h')
| -rw-r--r-- | include/mmc.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/include/mmc.h b/include/mmc.h index f7f228698..863b7e293 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -102,6 +102,7 @@  #define MMC_STATUS_MASK		(~0x0206BF7F)  #define MMC_STATUS_RDY_FOR_DATA (1 << 8)  #define MMC_STATUS_CURR_STATE	(0xf << 9) +#define MMC_STATUS_ERROR	(1 << 19)  #define MMC_VDD_165_195		0x00000080	/* VDD voltage 1.65 - 1.95 */  #define MMC_VDD_20_21		0x00000100	/* VDD voltage 2.0 ~ 2.1 */ |