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