aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mmc
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2021-05-16 14:20:42 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2021-05-21 15:38:35 +0000
commitce41765c21ac56a37c60a0e8cd227ee3396740cc (patch)
tree0c7be3dd01e47162c2453a3ad9882b6286d758ec /sys/dev/mmc
parent03d4e8bb6592fefab7b17f1d163adba4e35a12c2 (diff)
downloadsrc-ce41765c21ac56a37c60a0e8cd227ee3396740cc.tar.gz
src-ce41765c21ac56a37c60a0e8cd227ee3396740cc.zip
mmc: dwmmc: Call mmc_fdt_set_power
This allow us to powerup/down the card and enabling/disabling the regulators if any. Sponsored by: Diablotin Systems Differential Revision: https://reviews.freebsd.org/D30292
Diffstat (limited to 'sys/dev/mmc')
-rw-r--r--sys/dev/mmc/host/dwmmc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/mmc/host/dwmmc.c b/sys/dev/mmc/host/dwmmc.c
index f28d842bd801..145b7fe17f09 100644
--- a/sys/dev/mmc/host/dwmmc.c
+++ b/sys/dev/mmc/host/dwmmc.c
@@ -892,6 +892,8 @@ dwmmc_update_ios(device_t brdev, device_t reqdev)
dprintf("Setting up clk %u bus_width %d, timming: %d\n",
ios->clock, ios->bus_width, ios->timing);
+ mmc_fdt_set_power(&sc->mmc_helper, ios->power_mode);
+
if (ios->bus_width == bus_width_8)
WRITE4(sc, SDMMC_CTYPE, SDMMC_CTYPE_8BIT);
else if (ios->bus_width == bus_width_4)