hc
2024-08-16 94ba65e25ce534ec0515708c9e0835242345bc7b
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
/*
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2019 Western Digital Corporation or its affiliates.
 *
 * Authors:
 *   Damien Le Moal <damien.lemoal@wdc.com>
 */
 
/dts-v1/;
/ {
   #address-cells = <2>;
   #size-cells = <2>;
   compatible = "kendryte,k210";
 
   chosen {
                bootargs = "console=hvc0 earlycon=sbi";
   };
 
   cpus {
       #address-cells = <1>;
       #size-cells = <0>;
       cpu0: cpu@0 {
           device_type = "cpu";
           clock-frequency = <390000000>;
           i-cache-size = <32768>;
           d-cache-size = <32768>;
           mmu-type = "none";
           reg = <0>;
           riscv,isa = "rv64imafdc";
           status = "okay";
           cpu0_intc: interrupt-controller {
               #interrupt-cells = <1>;
               compatible = "riscv,cpu-intc";
               interrupt-controller;
           };
       };
       cpu1: cpu@1 {
           device_type = "cpu";
           clock-frequency = <390000000>;
           d-cache-size = <32768>;
           i-cache-size = <32768>;
           mmu-type = "none";
           reg = <1>;
           riscv,isa = "rv64imafdc";
           status = "okay";
           cpu1_intc: interrupt-controller {
               #interrupt-cells = <1>;
               compatible = "riscv,cpu-intc";
               interrupt-controller;
           };
       };
   };
 
   memory@80000000 {
       /* Bank 0: 4 MB, Bank 1: 2 MB, AI chip SRAM: 2MB */
       device_type = "memory";
       reg = <0x00000000 0x80000000 0x00000000 0x00800000>;
   };
 
   plic0: interrupt-controller@C000000 {
       #interrupt-cells = <1>;
       compatible = "riscv,plic0";
       interrupt-controller;
       interrupts-extended =
           <&cpu0_intc 11 &cpu0_intc 9
            &cpu1_intc 11 &cpu1_intc 9>;
       reg = <0x0 0xc000000 0x0 0x4000000>;
   };
};