diff options
author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2017-10-07 19:29:39 +0300 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2017-10-12 03:18:25 +0300 |
commit | 88b1b18ffeae1d65e22ec24040545a84c3ace352 (patch) | |
tree | f3f0c45341664f97afd2cd241192ea5719185b62 /arch/arm/boot/dts/meson8b.dtsi | |
parent | b9b4bf504c9e94fe38b93aa2784991c80cebcf2e (diff) | |
download | linux-88b1b18ffeae1d65e22ec24040545a84c3ace352.tar.xz |
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/meson8b.dtsi')
-rw-r--r-- | arch/arm/boot/dts/meson8b.dtsi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/meson8b.dtsi b/arch/arm/boot/dts/meson8b.dtsi index bc4d4a237ea5..283c68c6b1f4 100644 --- a/arch/arm/boot/dts/meson8b.dtsi +++ b/arch/arm/boot/dts/meson8b.dtsi @@ -207,6 +207,12 @@ clock-names = "clkin", "core", "sana"; }; +&sdio { + compatible = "amlogic,meson8b-sdio", "amlogic,meson-mx-sdio"; + clocks = <&clkc CLKID_SDIO>, <&clkc CLKID_CLK81>; + clock-names = "core", "clkin"; +}; + &uart_AO { clocks = <&clkc CLKID_CLK81>; }; |