Skip to content

Commit 3ed22a3

Browse files
committed
Merge tag 'mmc-v6.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
Pull MMC host fixes from Ulf Hansson: - sdhci-esdhc-imx: Fix build problem dependency - sdhci-of-arasan: Increase card-detect stable timeout to 2 seconds - sdhci-of-aspeed: Fix DT doc for missing properties * tag 'mmc-v6.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc: mmc: sdhci-esdhc-imx: add alternate ARCH_S32 dependency to Kconfig mmc: sdhci-of-arasan: Increase CD stable timeout to 2 seconds dt-bindings: mmc: sdhci-of-aspeed: Switch ref to sdhci-common.yaml
2 parents a0bdd55 + d3ecb12 commit 3ed22a3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ properties:
4141
patternProperties:
4242
"^sdhci@[0-9a-f]+$":
4343
type: object
44-
$ref: mmc-controller.yaml
44+
$ref: sdhci-common.yaml
4545
unevaluatedProperties: false
4646

4747
properties:

drivers/mmc/host/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,14 +315,14 @@ config MMC_SDHCI_ESDHC_MCF
315315

316316
config MMC_SDHCI_ESDHC_IMX
317317
tristate "SDHCI support for the Freescale eSDHC/uSDHC i.MX controller"
318-
depends on ARCH_MXC || COMPILE_TEST
318+
depends on ARCH_MXC || ARCH_S32 || COMPILE_TEST
319319
depends on MMC_SDHCI_PLTFM
320320
depends on OF
321321
select MMC_SDHCI_IO_ACCESSORS
322322
select MMC_CQHCI
323323
help
324324
This selects the Freescale eSDHC/uSDHC controller support
325-
found on i.MX25, i.MX35 i.MX5x and i.MX6x.
325+
found on i.MX25, i.MX35, i.MX5x, i.MX6x, and S32G.
326326

327327
If you have a controller with this interface, say Y or M here.
328328

drivers/mmc/host/sdhci-of-arasan.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
#define HIWORD_UPDATE(val, mask, shift) \
100100
((val) << (shift) | (mask) << ((shift) + 16))
101101

102-
#define CD_STABLE_TIMEOUT_US 1000000
102+
#define CD_STABLE_TIMEOUT_US 2000000
103103
#define CD_STABLE_MAX_SLEEP_US 10
104104

105105
/**

0 commit comments

Comments
 (0)