diff options
author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2017-10-07 18:29:39 +0200 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2017-10-11 17:18:25 -0700 |
commit | 88b1b18ffeae1d65e22ec24040545a84c3ace352 (patch) | |
tree | f3f0c45341664f97afd2cd241192ea5719185b62 /arch/arm/boot/dts/meson.dtsi | |
parent | b9b4bf504c9e94fe38b93aa2784991c80cebcf2e (diff) | |
download | linux-88b1b18ffeae1d65e22ec24040545a84c3ace352.tar.gz |
ARM: dts: meson: add the SDIO MMC controller
Meson6, Meson8 and Meson8b are using the same MMC controller IP. This
adds the MMC controller node to meson.dtsi so it can be used by all
SoCs.
The controller itself is a bit special, because it has multiple slots.
Each slot is accessed through a sub-node of the controller. However,
currently the driver for this hardware only supports one slot.
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'arch/arm/boot/dts/meson.dtsi')
-rw-r--r-- | arch/arm/boot/dts/meson.dtsi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/meson.dtsi b/arch/arm/boot/dts/meson.dtsi index 7ae30e780506..290a183e87c5 100644 --- a/arch/arm/boot/dts/meson.dtsi +++ b/arch/arm/boot/dts/meson.dtsi @@ -165,6 +165,15 @@ status = "disabled"; }; + sdio: mmc@8c20 { + compatible = "amlogic,meson-mx-sdio"; + reg = <0x8c20 0x20>; + interrupts = <GIC_SPI 28 IRQ_TYPE_EDGE_RISING>; + #address-cells = <1>; + #size-cells = <0>; + status = "disabled"; + }; + spifc: spi@8c80 { compatible = "amlogic,meson6-spifc"; reg = <0x8c80 0x80>; |