0001 // SPDX-License-Identifier: GPL-2.0
0002 /dts-v1/;
0003 #include "bcm2835.dtsi"
0004 #include "bcm2835-rpi.dtsi"
0005
0006 / {
0007 leds {
0008 led-act {
0009 gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
0010 };
0011 };
0012
0013 memory@0 {
0014 device_type = "memory";
0015 reg = <0 0x20000000>;
0016 };
0017
0018 reg_3v3: fixed-regulator {
0019 compatible = "regulator-fixed";
0020 regulator-name = "3V3";
0021 regulator-min-microvolt = <3300000>;
0022 regulator-max-microvolt = <3300000>;
0023 regulator-always-on;
0024 };
0025
0026 reg_1v8: fixed-regulator {
0027 compatible = "regulator-fixed";
0028 regulator-name = "1V8";
0029 regulator-min-microvolt = <1800000>;
0030 regulator-max-microvolt = <1800000>;
0031 regulator-always-on;
0032 };
0033 };
0034
0035 &sdhost {
0036 non-removable;
0037 vmmc-supply = <®_3v3>;
0038 vqmmc-supply = <®_1v8>;
0039 };