hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (C) 2019 Sean Anderson <seanga2@gmail.com>
 * Copyright (C) 2020 Western Digital Corporation or its affiliates.
 */
#include <dt-bindings/clock/k210-clk.h>
 
/ {
   /*
    * Although the K210 is a 64-bit CPU, the address bus is only 32-bits
    * wide, and the upper half of all addresses is ignored.
    */
   #address-cells = <1>;
   #size-cells = <1>;
   compatible = "kendryte,k210";
 
   aliases {
       serial0 = &uarths0;
   };
 
   /*
    * The K210 has an sv39 MMU following the priviledge specification v1.9.
    * Since this is a non-ratified draft specification, the kernel does not
    * support it and the K210 support enabled only for the !MMU case.
    * Be consistent with this by setting the CPUs MMU type to "none".
    */
   cpus {
       #address-cells = <1>;
       #size-cells = <0>;
       timebase-frequency = <7800000>;
       cpu0: cpu@0 {
           device_type = "cpu";
           reg = <0>;
           compatible = "kendryte,k210", "sifive,rocket0", "riscv";
           riscv,isa = "rv64imafdc";
           mmu-type = "none";
           i-cache-size = <0x8000>;
           i-cache-block-size = <64>;
           d-cache-size = <0x8000>;
           d-cache-block-size = <64>;
           clocks = <&sysctl K210_CLK_CPU>;
           clock-frequency = <390000000>;
           cpu0_intc: interrupt-controller {
               #interrupt-cells = <1>;
               interrupt-controller;
               compatible = "riscv,cpu-intc";
           };
       };
       cpu1: cpu@1 {
           device_type = "cpu";
           reg = <1>;
           compatible = "kendryte,k210", "sifive,rocket0", "riscv";
           riscv,isa = "rv64imafdc";
           mmu-type = "none";
           i-cache-size = <0x8000>;
           i-cache-block-size = <64>;
           d-cache-size = <0x8000>;
           d-cache-block-size = <64>;
           clocks = <&sysctl K210_CLK_CPU>;
           clock-frequency = <390000000>;
           cpu1_intc: interrupt-controller {
               #interrupt-cells = <1>;
               interrupt-controller;
               compatible = "riscv,cpu-intc";
           };
       };
   };
 
   sram: memory@80000000 {
       device_type = "memory";
       reg = <0x80000000 0x400000>,
             <0x80400000 0x200000>,
             <0x80600000 0x200000>;
       reg-names = "sram0", "sram1", "aisram";
   };
 
   clocks {
       in0: oscillator {
           compatible = "fixed-clock";
           #clock-cells = <0>;
           clock-frequency = <26000000>;
       };
   };
 
   soc {
       #address-cells = <1>;
       #size-cells = <1>;
       compatible = "kendryte,k210-soc", "simple-bus";
       ranges;
       interrupt-parent = <&plic0>;
 
       sysctl: sysctl@50440000 {
           compatible = "kendryte,k210-sysctl", "simple-mfd";
           reg = <0x50440000 0x1000>;
           #clock-cells = <1>;
       };
 
       clint0: clint@2000000 {
           #interrupt-cells = <1>;
           compatible = "riscv,clint0";
           reg = <0x2000000 0xC000>;
           interrupts-extended =  <&cpu0_intc 3 &cpu0_intc 7
                       &cpu1_intc 3 &cpu1_intc 7>;
           clocks = <&sysctl K210_CLK_ACLK>;
       };
 
       plic0: interrupt-controller@c000000 {
           #interrupt-cells = <1>;
           interrupt-controller;
           compatible = "kendryte,k210-plic0", "riscv,plic0";
           reg = <0xC000000 0x4000000>;
           interrupts-extended = <&cpu0_intc 11>, <&cpu0_intc 0xffffffff>,
                         <&cpu1_intc 11>, <&cpu1_intc 0xffffffff>;
           riscv,ndev = <65>;
           riscv,max-priority = <7>;
       };
 
       uarths0: serial@38000000 {
           compatible = "kendryte,k210-uarths", "sifive,uart0";
           reg = <0x38000000 0x1000>;
           interrupts = <33>;
           clocks = <&sysctl K210_CLK_CPU>;
       };
   };
};