1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2/* 3 * Device Tree Source for the RZ/V2M (r9a09g011) Evaluation Kit Board 4 * 5 * Copyright (C) 2022 Renesas Electronics Corp. 6 */ 7 8/dts-v1/; 9#include "r9a09g011.dtsi" 10 11/ { 12 model = "RZ/V2M Evaluation Kit 2.0"; 13 compatible = "renesas,rzv2mevk2", "renesas,r9a09g011"; 14 15 aliases { 16 serial0 = &uart0; 17 ethernet0 = &avb; 18 }; 19 20 chosen { 21 stdout-path = "serial0:115200n8"; 22 }; 23 24 memory@58000000 { 25 device_type = "memory"; 26 /* 27 * first 1.25GiB is reserved for ISP Firmware, 28 * next 128MiB is reserved for secure area. 29 */ 30 reg = <0x0 0x58000000 0x0 0x28000000>; 31 }; 32 33 memory@180000000 { 34 device_type = "memory"; 35 reg = <0x1 0x80000000 0x0 0x80000000>; 36 }; 37}; 38 39&avb { 40 renesas,no-ether-link; 41 phy-handle = <&phy0>; 42 phy-mode = "gmii"; 43 status = "okay"; 44 45 phy0: ethernet-phy@0 { 46 compatible = "ethernet-phy-id001c.c916", 47 "ethernet-phy-ieee802.3-c22"; 48 reg = <0>; 49 }; 50}; 51 52&extal_clk { 53 clock-frequency = <48000000>; 54}; 55 56&uart0 { 57 status = "okay"; 58}; 59