1// SPDX-License-Identifier: GPL-2.0 2/* 3 * dts file for Xilinx Versal NET 4 * 5 * Copyright (C) 2021 - 2022, Xilinx, Inc. 6 * Copyright (C) 2022-2025, Advanced Micro Devices, Inc. 7 * 8 * Michal Simek <michal.simek@amd.com> 9 */ 10 11/dts-v1/; 12 13#include <dt-bindings/gpio/gpio.h> 14 15/ { 16 compatible = "xlnx,versal-net-mini"; 17 model = "Xilinx Versal NET MINI"; 18 #address-cells = <2>; 19 #size-cells = <2>; 20 21 memory: memory@0 { 22 reg = <0 0xBBF00000 0 0x100000>, <0 0 0 0x80000000>; 23 device_type = "memory"; 24 }; 25 26 aliases { 27 /* serial0 = &serial0; */ 28 serial0 = &dcc; 29 }; 30 31 chosen { 32 stdout-path = "serial0:115200"; 33 }; 34 35 clk1: clk1 { 36 bootph-all; 37 compatible = "fixed-clock"; 38 #clock-cells = <0>; 39 clock-frequency = <1000000>; 40 }; 41 42 dcc: dcc { 43 compatible = "arm,dcc"; 44 status = "okay"; 45 bootph-all; 46 }; 47 48 serial0: serial@f1920000 { 49 bootph-all; 50 compatible = "arm,pl011", "arm,primecell"; 51 reg = <0 0xf1920000 0 0x1000>; 52 reg-io-width = <4>; 53 clock-names = "uartclk", "apb_pclk"; 54 clocks = <&clk1>, <&clk1>; 55 clock = <1000000>; 56 skip-init; 57 }; 58}; 59