1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * Copyright (c) 2021-25 Axiado Corporation (or its affiliates). All rights reserved. 4 */ 5 6/dts-v1/; 7 8#include "ax3000.dtsi" 9 10/ { 11 model = "Axiado AX3000 EVK"; 12 compatible = "axiado,ax3000-evk", "axiado,ax3000"; 13 #address-cells = <2>; 14 #size-cells = <2>; 15 16 aliases { 17 serial3 = &uart3; 18 }; 19 20 chosen { 21 stdout-path = "serial3:115200"; 22 }; 23 24 memory@0 { 25 device_type = "memory"; 26 /* Cortex-A53 will use following memory map */ 27 reg = <0x00000000 0x3d000000 0x00000000 0x23000000>, 28 <0x00000004 0x00000000 0x00000000 0x80000000>; 29 }; 30}; 31 32/* GPIO bank 0 - 7 */ 33&gpio0 { 34 status = "okay"; 35}; 36 37&gpio1 { 38 status = "okay"; 39}; 40 41&gpio2 { 42 status = "okay"; 43}; 44 45&gpio3 { 46 status = "okay"; 47}; 48 49&gpio4 { 50 status = "okay"; 51}; 52 53&gpio5 { 54 status = "okay"; 55}; 56 57&gpio6 { 58 status = "okay"; 59}; 60 61&gpio7 { 62 status = "okay"; 63}; 64 65&uart0 { 66 status = "okay"; 67}; 68 69&uart1 { 70 status = "okay"; 71}; 72 73&uart2 { 74 status = "okay"; 75}; 76 77&uart3 { 78 status = "okay"; 79}; 80