blob: 4e2e5262f536934269c3ea04b32715f25a29c7c2 [file] [log] [blame]
Daniel Golled7bb1092023-04-11 17:19:46 +02001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2021 MediaTek Inc.
4 * Author: Sam Shih <sam.shih@mediatek.com>
5 */
6
7/dts-v1/;
8#include "mt7986a-bpi-r3-sd.dts"
9#include <dt-bindings/gpio/gpio.h>
10/ {
11 reg_1p8v: regulator-1p8v {
12 compatible = "regulator-fixed";
13 regulator-name = "fixed-1.8V";
14 regulator-min-microvolt = <1800000>;
15 regulator-max-microvolt = <1800000>;
16 regulator-boot-on;
17 regulator-always-on;
18 };
19};
20
21&mmc0 {
22 pinctrl-names = "default";
23 pinctrl-0 = <&mmc0_pins_default>;
24 bus-width = <8>;
25 max-frequency = <200000000>;
26 cap-mmc-highspeed;
27 cap-mmc-hw-reset;
28 vmmc-supply = <&reg_3p3v>;
29 vqmmc-supply = <&reg_1p8v>;
30 non-removable;
31 status = "okay";
32};