MMC core:
- Fix workaround for SD UHS-I voltage switch -----BEGIN PGP SIGNATURE----- iQJLBAABCgA1FiEEugLDXPmKSktSkQsV/iaEJXNYjCkFAmMR0WEXHHVsZi5oYW5z c29uQGxpbmFyby5vcmcACgkQ/iaEJXNYjClw3RAAqcZcNdb3lIiYof5EYr4Z9I35 Ki1hFoXeonv7fK9Wie+hdkjsJ25oHbZJJcU0Ui5l8UTM5wNrZrUzU+ARkzVnFhHO RQ4KHAJauckZxMLnM1UVWlnHOaUbB9LuWc372ZgJVfbAJnBhI29A//fdzCwXnc+q pQULAXZkV9yUIiVSV+Ny9LRKsoDAt1M53tWArp7BdQl8JkFM1QcBSp4cXSjaNVAW XwKEveOETvN6VyqaCXuTkZI4KV1WYkFtUwTpJWj6gDS3BiOdJKL/zpNtGw8aAgSc 9docePew7yqWXmtp2WtjZ5H0JLNZHc5j2M88vHUntB3fJUYRE7xBwZjdOgvCR/9z r958JxX7mvzcE7G74KiSqpW9T3wJ5dZ7F6BjU80LKk1ABLGwNt6qtrm22Xj5xcP4 emuwSQK4ou0VKfovqIyVE/a962UNeibl2VGYzx60Fx1t7wbRID+R7VJkSaihW0GY TVZB6fS7VsHDdiSjv2mCjrVY+0JpVTmT/Mb+Mnnri5Dwm6JdPCpekktuAtStTGCf 3OBhV+4Seoqik1581TZPoMnIV7jkWHYoNvPbfN6Zh+PF+Tcd0HWxcuK7sJBFXUYE jB5+eujU4U2eAp2KNdPoYSzAEMID84hgIivnBLalcr41BrkQHHX1aQtZcQ9x0W1i UGFm5l140SOMFXO4YW8= =xnd1 -----END PGP SIGNATURE----- Merge tag 'mmc-v6.0-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc Pull MMC fixes from Ulf Hansson: - Fix workaround for SD UHS-I voltage switch * tag 'mmc-v6.0-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc: mmc: core: Fix inconsistent sd3_bus_mode at UHS-I SD voltage switch failure mmc: core: Fix UHS-I SD 1.8V workaround branch
This commit is contained in:
Коммит
b307e70457
|
@ -949,15 +949,16 @@ int mmc_sd_setup_card(struct mmc_host *host, struct mmc_card *card,
|
||||||
|
|
||||||
/* Erase init depends on CSD and SSR */
|
/* Erase init depends on CSD and SSR */
|
||||||
mmc_init_erase(card);
|
mmc_init_erase(card);
|
||||||
|
|
||||||
/*
|
|
||||||
* Fetch switch information from card.
|
|
||||||
*/
|
|
||||||
err = mmc_read_switch(card);
|
|
||||||
if (err)
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Fetch switch information from card. Note, sd3_bus_mode can change if
|
||||||
|
* voltage switch outcome changes, so do this always.
|
||||||
|
*/
|
||||||
|
err = mmc_read_switch(card);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For SPI, enable CRC as appropriate.
|
* For SPI, enable CRC as appropriate.
|
||||||
* This CRC enable is located AFTER the reading of the
|
* This CRC enable is located AFTER the reading of the
|
||||||
|
@ -1480,26 +1481,15 @@ retry:
|
||||||
if (!v18_fixup_failed && !mmc_host_is_spi(host) && mmc_host_uhs(host) &&
|
if (!v18_fixup_failed && !mmc_host_is_spi(host) && mmc_host_uhs(host) &&
|
||||||
mmc_sd_card_using_v18(card) &&
|
mmc_sd_card_using_v18(card) &&
|
||||||
host->ios.signal_voltage != MMC_SIGNAL_VOLTAGE_180) {
|
host->ios.signal_voltage != MMC_SIGNAL_VOLTAGE_180) {
|
||||||
/*
|
if (mmc_host_set_uhs_voltage(host) ||
|
||||||
* Re-read switch information in case it has changed since
|
mmc_sd_init_uhs_card(card)) {
|
||||||
* oldcard was initialized.
|
v18_fixup_failed = true;
|
||||||
*/
|
mmc_power_cycle(host, ocr);
|
||||||
if (oldcard) {
|
if (!oldcard)
|
||||||
err = mmc_read_switch(card);
|
mmc_remove_card(card);
|
||||||
if (err)
|
goto retry;
|
||||||
goto free_card;
|
|
||||||
}
|
|
||||||
if (mmc_sd_card_using_v18(card)) {
|
|
||||||
if (mmc_host_set_uhs_voltage(host) ||
|
|
||||||
mmc_sd_init_uhs_card(card)) {
|
|
||||||
v18_fixup_failed = true;
|
|
||||||
mmc_power_cycle(host, ocr);
|
|
||||||
if (!oldcard)
|
|
||||||
mmc_remove_card(card);
|
|
||||||
goto retry;
|
|
||||||
}
|
|
||||||
goto done;
|
|
||||||
}
|
}
|
||||||
|
goto cont;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Initialization sequence for UHS-I cards */
|
/* Initialization sequence for UHS-I cards */
|
||||||
|
@ -1534,7 +1524,7 @@ retry:
|
||||||
mmc_set_bus_width(host, MMC_BUS_WIDTH_4);
|
mmc_set_bus_width(host, MMC_BUS_WIDTH_4);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
cont:
|
||||||
if (!oldcard) {
|
if (!oldcard) {
|
||||||
/* Read/parse the extension registers. */
|
/* Read/parse the extension registers. */
|
||||||
err = sd_read_ext_regs(card);
|
err = sd_read_ext_regs(card);
|
||||||
|
@ -1566,7 +1556,7 @@ retry:
|
||||||
err = -EINVAL;
|
err = -EINVAL;
|
||||||
goto free_card;
|
goto free_card;
|
||||||
}
|
}
|
||||||
done:
|
|
||||||
host->card = card;
|
host->card = card;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче