@@ -525,6 +525,9 @@ static int sdhci_uhs2_do_detect_init(struct sdhci_host *host)
DBG("%s: begin UHS2 init.\n", __func__);
spin_lock_irqsave(&host->lock, flags);
+ if (host->ops && host->ops->uhs2_pre_detect_init)
+ host->ops->uhs2_pre_detect_init(host);
+
if (sdhci_uhs2_interface_detect(host)) {
pr_warn("%s: cannot detect UHS2 interface.\n",
mmc_hostname(host->mmc));
@@ -721,6 +721,8 @@ struct sdhci_ops {
void (*request_done)(struct sdhci_host *host,
struct mmc_request *mrq);
void (*dump_vendor_regs)(struct sdhci_host *host);
+ /* UHS-2 support */
+ void (*uhs2_pre_detect_init)(struct sdhci_host *host);
};
struct sdhci_uhs2_ops {