blob: ef22c2da783afe706548637ca0ca39c816c04e23 [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 {
8 act {
9 gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
10 };
11 };
12
13 reg_3v3: fixed-regulator {
14 compatible = "regulator-fixed";
15 regulator-name = "3V3";
16 regulator-min-microvolt = <3300000>;
17 regulator-max-microvolt = <3300000>;
18 regulator-always-on;
19 };
20
21 reg_1v8: fixed-regulator {
22 compatible = "regulator-fixed";
23 regulator-name = "1V8";
24 regulator-min-microvolt = <1800000>;
25 regulator-max-microvolt = <1800000>;
26 regulator-always-on;
27 };
28};
29
30&sdhost {
31 non-removable;
32 vmmc-supply = <&reg_3v3>;
33 vqmmc-supply = <&reg_1v8>;
34};