forked from Openwrt/openwrt
69dd5a788f
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.37 Added: generic/hack-6.6/900-fix-build-to-handle-return-value.patch[1] Manually rebased: generic/pending-6.6/834-ledtrig-libata.patch Removed upstreamed: bcm27xx/patches-6.6/950-0398-drm-panel-panel-ilitek9881c-Use-cansleep-methods.patch[2] All other patches automatically rebased. 1. Patch suggested by @DragonBluep to circumvent upstream breakage of kernel 6.6.37 compilation. See comments in https://github.com/openwrt/openwrt/pull/15879 for additional discussion. 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.37&id=1618f7a875ffd916596392fd29880c0429b8af60 Build system: x86/64 Build-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Run-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/15879 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
26 lines
895 B
Diff
26 lines
895 B
Diff
From 37573248884ec252165a246df21642c52573f013 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Bell <jonathan@raspberrypi.com>
|
|
Date: Mon, 8 Apr 2024 16:16:53 +0100
|
|
Subject: [PATCH 1020/1085] drivers: mmc: sdhci-brcmstb: bcm2712 supports
|
|
HS400es and clock gating
|
|
|
|
Enhanced Strobe and clock gating are set in the SDHCI_VENDOR register,
|
|
so make the driver aware it needs to do this for this controller.
|
|
|
|
Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com>
|
|
---
|
|
drivers/mmc/host/sdhci-brcmstb.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/mmc/host/sdhci-brcmstb.c
|
|
+++ b/drivers/mmc/host/sdhci-brcmstb.c
|
|
@@ -401,6 +401,8 @@ static const struct brcmstb_match_priv m
|
|
};
|
|
|
|
static const struct brcmstb_match_priv match_priv_2712 = {
|
|
+ .flags = BRCMSTB_MATCH_FLAGS_HAS_CLOCK_GATE,
|
|
+ .hs400es = sdhci_brcmstb_hs400es,
|
|
.cfginit = sdhci_brcmstb_cfginit_2712,
|
|
.ops = &sdhci_brcmstb_ops_2712,
|
|
};
|