mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
44 lines
719 B
Plaintext
44 lines
719 B
Plaintext
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||
|
|
||
|
/dts-v1/;
|
||
|
/plugin/;
|
||
|
|
||
|
/ {
|
||
|
compatible = "cmcc,rax3000m", "mediatek,mt7981";
|
||
|
|
||
|
fragment@0 {
|
||
|
target = <&mmc0>;
|
||
|
__overlay__ {
|
||
|
bus-width = <8>;
|
||
|
max-frequency = <26000000>;
|
||
|
no-sd;
|
||
|
no-sdio;
|
||
|
non-removable;
|
||
|
pinctrl-names = "default", "state_uhs";
|
||
|
pinctrl-0 = <&mmc0_pins_default>;
|
||
|
pinctrl-1 = <&mmc0_pins_uhs>;
|
||
|
vmmc-supply = <®_3p3v>;
|
||
|
status = "okay";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
fragment@1 {
|
||
|
target = <&pio>;
|
||
|
__overlay__ {
|
||
|
mmc0_pins_default: mmc0-pins {
|
||
|
mux {
|
||
|
function = "flash";
|
||
|
groups = "emmc_45";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
mmc0_pins_uhs: mmc0-uhs-pins {
|
||
|
mux {
|
||
|
function = "flash";
|
||
|
groups = "emmc_45";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|