Loading...
1// SPDX-License-Identifier: GPL-2.0
2/dts-v1/;
3#include "bcm2835.dtsi"
4#include "bcm2835-rpi.dtsi"
5#include "bcm2835-rpi-common.dtsi"
6#include "bcm283x-rpi-led-deprecated.dtsi"
7
8/ {
9 leds {
10 led-act {
11 gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
12 };
13 };
14
15 memory@0 {
16 device_type = "memory";
17 reg = <0 0x20000000>;
18 };
19
20 reg_3v3: fixed-regulator {
21 compatible = "regulator-fixed";
22 regulator-name = "3V3";
23 regulator-min-microvolt = <3300000>;
24 regulator-max-microvolt = <3300000>;
25 regulator-always-on;
26 };
27
28 reg_1v8: fixed-regulator {
29 compatible = "regulator-fixed";
30 regulator-name = "1V8";
31 regulator-min-microvolt = <1800000>;
32 regulator-max-microvolt = <1800000>;
33 regulator-always-on;
34 };
35};
36
37&led_act {
38 gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
39};
40
41&sdhost {
42 non-removable;
43 vmmc-supply = <®_3v3>;
44 vqmmc-supply = <®_1v8>;
45};
1// 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 memory@0 {
14 device_type = "memory";
15 reg = <0 0x20000000>;
16 };
17
18 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 = <®_3v3>;
38 vqmmc-supply = <®_1v8>;
39};