1/dts-v1/;
2
3#include "dove.dtsi"
4
5/ {
6	model = "Globalscale D2Plug";
7	compatible = "globalscale,d2plug", "marvell,dove";
8
9	memory {
10		device_type = "memory";
11		reg = <0x00000000 0x40000000>;
12	};
13
14	chosen {
15		bootargs = "console=ttyS0,115200n8 earlyprintk";
16	};
17
18	leds {
19		compatible = "gpio-leds";
20		pinctrl-0 = <&pmx_gpio_0 &pmx_gpio_1 &pmx_gpio_2>;
21		pinctrl-names = "default";
22
23		wlan-ap {
24			label = "wlan-ap";
25			gpios = <&gpio0 0 1>;
26		};
27
28		wlan-act {
29			label = "wlan-act";
30			gpios = <&gpio0 1 1>;
31		};
32
33		bluetooth-act {
34			label = "bt-act";
35			gpios = <&gpio0 2 1>;
36		};
37	};
38};
39
40&uart0 { status = "okay"; };
41&sata0 { status = "okay"; };
42&i2c0 { status = "okay"; };
43&mdio { status = "okay"; };
44&eth { status = "okay"; };
45
46/* Samsung M8G2F eMMC */
47&sdio0 {
48	status = "okay";
49	non-removable;
50	bus-width = <4>;
51};
52
53/* Marvell SD8787 WLAN/BT */
54&sdio1 {
55	status = "okay";
56	non-removable;
57	bus-width = <4>;
58};
59
60&spi0 {
61	status = "okay";
62
63	/* spi0.0: 4M Flash Macronix MX25L3205D */
64	spi-flash@0 {
65		compatible = "st,m25l3205d";
66		spi-max-frequency = <20000000>;
67		reg = <0>;
68	};
69};
70