1/*
2 * Device Tree Source for the V3M Starter Kit board
3 *
4 * Copyright (C) 2017 Renesas Electronics Corp.
5 * Copyright (C) 2017 Cogent Embedded, Inc.
6 *
7 * This file is licensed under the terms of the GNU General Public License
8 * version 2.  This program is licensed "as is" without any warranty of any
9 * kind, whether express or implied.
10 */
11
12/dts-v1/;
13#include "r8a77970.dtsi"
14
15/ {
16	model = "Renesas V3M Starter Kit board";
17	compatible = "renesas,v3msk", "renesas,r8a77970";
18
19	aliases {
20		serial0 = &scif0;
21	};
22
23	chosen {
24		stdout-path = "serial0:115200n8";
25	};
26
27	memory@48000000 {
28		device_type = "memory";
29		/* first 128MB is reserved for secure area. */
30		reg = <0x0 0x48000000 0x0 0x38000000>;
31	};
32};
33
34&avb {
35	renesas,no-ether-link;
36	phy-handle = <&phy0>;
37	phy-mode = "rgmii-id";
38	status = "okay";
39
40	phy0: ethernet-phy@0 {
41		rxc-skew-ps = <1500>;
42		reg = <0>;
43	};
44};
45
46&extal_clk {
47	clock-frequency = <16666666>;
48};
49
50&extalr_clk {
51	clock-frequency = <32768>;
52};
53
54&pfc {
55	scif0_pins: scif0 {
56		groups = "scif0_data";
57		function = "scif0";
58	};
59};
60
61&scif0 {
62	pinctrl-0 = <&scif0_pins>;
63	pinctrl-names = "default";
64
65	status = "okay";
66};
67