bcm27xx: switch to 5.15
[openwrt/staging/chunkeey.git] / target / linux / bcm27xx / patches-5.10 / 950-0127-mmc-sdhci-iproc-Fix-vmmc-regulators-on-iProc.patch
1 From efc6e571660a0d0ca53fb603cc4f132481e8977f Mon Sep 17 00:00:00 2001
2 From: Phil Elwell <phil@raspberrypi.org>
3 Date: Fri, 2 Aug 2019 15:20:11 +0100
4 Subject: [PATCH] mmc: sdhci-iproc: Fix vmmc regulators on iProc
5
6 The Linux support for controlling card power via regulators appears to
7 be contentious. I would argue that the default behaviour is contrary to
8 the SDHCI spec - turning off the power writes a reserved value to the
9 SD Bus Voltage Select field of the Power Control Register, which
10 seems to kill the Arasan/iProc controller - but fortunately there is a
11 hook in sdhci_ops to override the behaviour. Borrow the implementation
12 from sdhci_arasan_set_power.
13
14 Signed-off-by: Phil Elwell <phil@raspberrypi.org>
15 ---
16 drivers/mmc/host/sdhci-iproc.c | 12 ++++++++++++
17 1 file changed, 12 insertions(+)
18
19 --- a/drivers/mmc/host/sdhci-iproc.c
20 +++ b/drivers/mmc/host/sdhci-iproc.c
21 @@ -190,6 +190,17 @@ static unsigned int sdhci_iproc_bcm2711_
22 return 200000;
23 }
24
25 +static void sdhci_iproc_set_power(struct sdhci_host *host, unsigned char mode,
26 + unsigned short vdd)
27 +{
28 + if (!IS_ERR(host->mmc->supply.vmmc)) {
29 + struct mmc_host *mmc = host->mmc;
30 +
31 + mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
32 + }
33 + sdhci_set_power_noreg(host, mode, vdd);
34 +}
35 +
36 static const struct sdhci_ops sdhci_iproc_ops = {
37 .set_clock = sdhci_set_clock,
38 .get_max_clock = sdhci_iproc_get_max_clock,
39 @@ -207,6 +218,7 @@ static const struct sdhci_ops sdhci_ipro
40 .write_b = sdhci_iproc_writeb,
41 .set_clock = sdhci_set_clock,
42 .get_max_clock = sdhci_iproc_get_max_clock,
43 + .set_power = sdhci_iproc_set_power,
44 .set_bus_width = sdhci_set_bus_width,
45 .reset = sdhci_reset,
46 .set_uhs_signaling = sdhci_set_uhs_signaling,