@@ -286,6 +286,8 @@ static int mmc_read_ext_csd(struct mmc_card *card)
mmc_hostname(card->host));
}
+ card->ext_csd.bootconfig = ext_csd[EXT_CSD_BOOT_CONFIG];
+
if (card->ext_csd.rev >= 3) {
u8 sa_shift = ext_csd[EXT_CSD_S_A_TIMEOUT];
@@ -492,6 +494,15 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr,
}
/*
+ * ensure eMMC user default PARTITION is enabled
+ */
+ if (card->ext_csd.bootconfig & 0x7) {
+ card->ext_csd.bootconfig &= ~0x7;
+ mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
+ EXT_CSD_BOOT_CONFIG, card->ext_csd.bootconfig);
+ }
+
+ /*
* Activate high speed (if supported)
*/
if ((card->ext_csd.hs_max_dtr != 0) &&
@@ -45,6 +45,7 @@ struct mmc_ext_csd {
u8 rev;
u8 erase_group_def;
u8 sec_feature_support;
+ u8 bootconfig;
unsigned int sa_timeout; /* Units: 100ns */
unsigned int hs_max_dtr;
unsigned int sectors;
@@ -198,6 +198,7 @@ struct _mmc_csd {
u8 tmp_write_protect;
u8 file_format;
u8 ecc;
+ u8 bootconfig;
};
/*
@@ -254,6 +255,7 @@ struct _mmc_csd {
*/
#define EXT_CSD_ERASE_GROUP_DEF 175 /* R/W */
+#define EXT_CSD_BOOT_CONFIG 179 /* R/W */
#define EXT_CSD_ERASED_MEM_CONT 181 /* RO */
#define EXT_CSD_BUS_WIDTH 183 /* R/W */
#define EXT_CSD_HS_TIMING 185 /* R/W */