boards: amd: Enable SDHC DT nodes

Enable both sdhci0 and sdhci1 DT node. IP is tested on HW for Versal
NET.

Signed-off-by: Paul Alvin <alvin.paulp@amd.com>
This commit is contained in:
Paul Alvin 2025-04-11 09:25:00 +00:00 committed by Maureen Helm
commit d85aff2575

View file

@ -14,6 +14,12 @@
zephyr,shell-uart = &uart0;
zephyr,ocm = &ocm;
};
sdhci_ref_clk: sdhci-ref-clk {
compatible = "fixed-clock";
clock-frequency = <200000000>;
#clock-cells = <0>;
};
};
&cpu0 {
@ -42,3 +48,14 @@
current-speed = <115200>;
clock-frequency = <100000000>;
};
&sdhci0 {
status = "okay";
power-delay-ms = <10>;
clocks = <&sdhci_ref_clk>;
};
&sdhci1 {
status = "okay";
clocks = <&sdhci_ref_clk>;
};