mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 19:05:39 +00:00
mmc: improve API to make clear hw_reset callback is for cards
To make it unambiguous that the hw_reset callback is for cards and not for controllers, we add 'card' to the callback name and convert all users in one go. We keep the argument as mmc_host, though, because the callback is used very early when mmc_card is not yet populated. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Link: https://lore.kernel.org/r/20220408080045.6497-4-wsa+renesas@sang-engineering.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
9723f69d1d
commit
32f18e5961
@ -1988,9 +1988,9 @@ static void mmc_hw_reset_for_init(struct mmc_host *host)
|
||||
{
|
||||
mmc_pwrseq_reset(host);
|
||||
|
||||
if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
|
||||
if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->card_hw_reset)
|
||||
return;
|
||||
host->ops->hw_reset(host);
|
||||
host->ops->card_hw_reset(host);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2225,11 +2225,11 @@ static int _mmc_hw_reset(struct mmc_host *host)
|
||||
*/
|
||||
_mmc_flush_cache(host);
|
||||
|
||||
if ((host->caps & MMC_CAP_HW_RESET) && host->ops->hw_reset &&
|
||||
if ((host->caps & MMC_CAP_HW_RESET) && host->ops->card_hw_reset &&
|
||||
mmc_can_reset(card)) {
|
||||
/* If the card accept RST_n signal, send it. */
|
||||
mmc_set_clock(host, host->f_init);
|
||||
host->ops->hw_reset(host);
|
||||
host->ops->card_hw_reset(host);
|
||||
/* Set initial state and call mmc_set_ios */
|
||||
mmc_set_initial_state(host);
|
||||
} else {
|
||||
|
@ -1259,7 +1259,7 @@ static void bcm2835_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
|
||||
static const struct mmc_host_ops bcm2835_ops = {
|
||||
.request = bcm2835_request,
|
||||
.set_ios = bcm2835_set_ios,
|
||||
.hw_reset = bcm2835_reset,
|
||||
.card_hw_reset = bcm2835_reset,
|
||||
};
|
||||
|
||||
static int bcm2835_add_host(struct bcm2835_host *host)
|
||||
|
@ -1812,7 +1812,7 @@ static const struct mmc_host_ops dw_mci_ops = {
|
||||
.set_ios = dw_mci_set_ios,
|
||||
.get_ro = dw_mci_get_ro,
|
||||
.get_cd = dw_mci_get_cd,
|
||||
.hw_reset = dw_mci_hw_reset,
|
||||
.card_hw_reset = dw_mci_hw_reset,
|
||||
.enable_sdio_irq = dw_mci_enable_sdio_irq,
|
||||
.ack_sdio_irq = dw_mci_ack_sdio_irq,
|
||||
.execute_tuning = dw_mci_execute_tuning,
|
||||
|
@ -511,7 +511,7 @@ static int meson_mx_sdhc_execute_tuning(struct mmc_host *mmc, u32 opcode)
|
||||
}
|
||||
|
||||
static const struct mmc_host_ops meson_mx_sdhc_ops = {
|
||||
.hw_reset = meson_mx_sdhc_hw_reset,
|
||||
.card_hw_reset = meson_mx_sdhc_hw_reset,
|
||||
.request = meson_mx_sdhc_request,
|
||||
.set_ios = meson_mx_sdhc_set_ios,
|
||||
.card_busy = meson_mx_sdhc_card_busy,
|
||||
|
@ -2458,7 +2458,7 @@ static const struct mmc_host_ops mt_msdc_ops = {
|
||||
.execute_tuning = msdc_execute_tuning,
|
||||
.prepare_hs400_tuning = msdc_prepare_hs400_tuning,
|
||||
.execute_hs400_tuning = msdc_execute_hs400_tuning,
|
||||
.hw_reset = msdc_hw_reset,
|
||||
.card_hw_reset = msdc_hw_reset,
|
||||
};
|
||||
|
||||
static const struct cqhci_host_ops msdc_cmdq_ops = {
|
||||
|
@ -2999,7 +2999,7 @@ static const struct mmc_host_ops sdhci_ops = {
|
||||
.set_ios = sdhci_set_ios,
|
||||
.get_cd = sdhci_get_cd,
|
||||
.get_ro = sdhci_get_ro,
|
||||
.hw_reset = sdhci_hw_reset,
|
||||
.card_hw_reset = sdhci_hw_reset,
|
||||
.enable_sdio_irq = sdhci_enable_sdio_irq,
|
||||
.ack_sdio_irq = sdhci_ack_sdio_irq,
|
||||
.start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
|
||||
|
@ -1115,7 +1115,7 @@ static const struct mmc_host_ops sunxi_mmc_ops = {
|
||||
.get_cd = mmc_gpio_get_cd,
|
||||
.enable_sdio_irq = sunxi_mmc_enable_sdio_irq,
|
||||
.start_signal_voltage_switch = sunxi_mmc_volt_switch,
|
||||
.hw_reset = sunxi_mmc_hw_reset,
|
||||
.card_hw_reset = sunxi_mmc_hw_reset,
|
||||
.card_busy = sunxi_mmc_card_busy,
|
||||
};
|
||||
|
||||
|
@ -597,7 +597,7 @@ static int uniphier_sd_probe(struct platform_device *pdev)
|
||||
ret = PTR_ERR(priv->rst_hw);
|
||||
goto free_host;
|
||||
}
|
||||
host->ops.hw_reset = uniphier_sd_hw_reset;
|
||||
host->ops.card_hw_reset = uniphier_sd_hw_reset;
|
||||
}
|
||||
|
||||
if (host->mmc->caps & MMC_CAP_UHS) {
|
||||
|
@ -181,7 +181,7 @@ struct mmc_host_ops {
|
||||
unsigned int max_dtr, int host_drv,
|
||||
int card_drv, int *drv_type);
|
||||
/* Reset the eMMC card via RST_n */
|
||||
void (*hw_reset)(struct mmc_host *host);
|
||||
void (*card_hw_reset)(struct mmc_host *host);
|
||||
void (*card_event)(struct mmc_host *host);
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user