diff options
author | Thierry Reding <thierry.reding@avionic-design.de> | 2012-01-02 01:15:37 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2012-01-08 21:28:27 -0600 |
commit | 48972d907a28de17c2a5108a3ee3d5f3eb434376 (patch) | |
tree | bfaf84d0cd7a3ed6e027e52cdd5cbf673ae788e7 /include/mmc.h | |
parent | 314284b1567f1ce29c19060641e7f213146f7ab8 (diff) | |
download | u-boot-imx-48972d907a28de17c2a5108a3ee3d5f3eb434376.zip u-boot-imx-48972d907a28de17c2a5108a3ee3d5f3eb434376.tar.gz u-boot-imx-48972d907a28de17c2a5108a3ee3d5f3eb434376.tar.bz2 |
mmc: Implement card detection.
Check for card detect each time an MMC/SD device is initialized. If card
detection is not implemented, this code behaves as before and continues
assuming a card is present. If no card is detected, has_init is reset
for the MMC/SD device (to force initialization next time) and an error
is returned.
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Tested-by: Jason Liu <jason.hui@linaro.org>
Diffstat (limited to 'include/mmc.h')
-rw-r--r-- | include/mmc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mmc.h b/include/mmc.h index a850174..8744604 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -302,6 +302,7 @@ struct mmc { struct mmc_cmd *cmd, struct mmc_data *data); void (*set_ios)(struct mmc *mmc); int (*init)(struct mmc *mmc); + int (*getcd)(struct mmc *mmc); uint b_max; }; @@ -316,6 +317,7 @@ void print_mmc_devices(char separator); int get_mmc_num(void); int board_mmc_getcd(struct mmc *mmc); int mmc_switch_part(int dev_num, unsigned int part_num); +int mmc_getcd(struct mmc *mmc); #ifdef CONFIG_GENERIC_MMC int atmel_mci_init(void *regs); |