blob: e4e6b6abbfc13337caf240d2a269fca03f06d8e4 [file] [log] [blame]
Heinrich Schuchardt143256b2019-04-28 06:46:57 +02001// SPDX-License-Identifier: GPL-2.0
2/dts-v1/;
3#include "bcm2835.dtsi"
4#include "bcm2835-rpi.dtsi"
5
6/ {
7 leds {
Simon Glass9ae600e2021-12-16 20:59:13 -07008 led-act {
Heinrich Schuchardt143256b2019-04-28 06:46:57 +02009 gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
10 };
11 };
12
Simon Glass9ae600e2021-12-16 20:59:13 -070013 memory@0 {
14 device_type = "memory";
15 reg = <0 0x20000000>;
16 };
17
Heinrich Schuchardt143256b2019-04-28 06:46:57 +020018 reg_3v3: fixed-regulator {
19 compatible = "regulator-fixed";
20 regulator-name = "3V3";
21 regulator-min-microvolt = <3300000>;
22 regulator-max-microvolt = <3300000>;
23 regulator-always-on;
24 };
25
26 reg_1v8: fixed-regulator {
27 compatible = "regulator-fixed";
28 regulator-name = "1V8";
29 regulator-min-microvolt = <1800000>;
30 regulator-max-microvolt = <1800000>;
31 regulator-always-on;
32 };
33};
34
35&sdhost {
36 non-removable;
37 vmmc-supply = <&reg_3v3>;
38 vqmmc-supply = <&reg_1v8>;
39};