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 serial0 = &uart0; 18 serial1 = &uart1; 19 serial2 = &uart2; 20 serial3 = &uart3; 21 }; 22 23 chosen { 24 stdout-path = "serial3:115200"; 25 }; 26 27 memory@0 { 28 device_type = "memory"; 29 /* Cortex-A53 will use following memory map */ 30 reg = <0x00000000 0x3d000000 0x00000000 0x23000000>, 31 <0x00000004 0x00000000 0x00000000 0x80000000>; 32 }; 33}; 34 35/* GPIO bank 0 - 7 */ 36&gpio0 { 37 status = "okay"; 38}; 39 40&gpio1 { 41 status = "okay"; 42}; 43 44&gpio2 { 45 status = "okay"; 46}; 47 48&gpio3 { 49 status = "okay"; 50}; 51 52&gpio4 { 53 status = "okay"; 54}; 55 56&gpio5 { 57 status = "okay"; 58}; 59 60&gpio6 { 61 status = "okay"; 62}; 63 64&gpio7 { 65 status = "okay"; 66}; 67 68&uart0 { 69 status = "okay"; 70}; 71 72&uart1 { 73 status = "okay"; 74}; 75 76&uart2 { 77 status = "okay"; 78}; 79 80&uart3 { 81 status = "okay"; 82}; 83