mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
1056303148
In order to prepare and ease future DT synchronization with kernel DT, migrate all U-boot specific nodes/properties/addons to U-boot DT files. As sdmmc is not yet supported on kernel side, sdmmc nodes are located in eval-u-boot and disco-u-boot DT files. Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
12 lines
227 B
Text
12 lines
227 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#include <stm32h7-u-boot.dtsi>
|
|
|
|
&sdmmc1 {
|
|
status = "okay";
|
|
pinctrl-0 = <&sdmmc1_pins>,
|
|
<&pinctrl_sdmmc1_level_shifter>;
|
|
pinctrl-names = "default";
|
|
bus-width = <4>;
|
|
st,dirpol;
|
|
};
|