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