mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
Merge tag 'mmc-6-19' of https://github.com/MrVan/u-boot
- Avoid HS400 mode when accessing boot partitions
This commit is contained in:
commit
64fabed971
1 changed files with 2 additions and 2 deletions
|
@ -905,14 +905,14 @@ static int mmc_set_capacity(struct mmc *mmc, int part_num)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
|
||||
#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
|
||||
static int mmc_boot_part_access_chk(struct mmc *mmc, unsigned int part_num)
|
||||
{
|
||||
int forbidden = 0;
|
||||
bool change = false;
|
||||
|
||||
if (part_num & PART_ACCESS_MASK)
|
||||
forbidden = MMC_CAP(MMC_HS_200);
|
||||
forbidden = MMC_CAP(MMC_HS_200) | MMC_CAP(MMC_HS_400);
|
||||
|
||||
if (MMC_CAP(mmc->selected_mode) & forbidden) {
|
||||
pr_debug("selected mode (%s) is forbidden for part %d\n",
|
||||
|
|
Loading…
Add table
Reference in a new issue