hc
2023-11-06 36f0949ef9854b82a9a3154d970da4e3b8d12a61
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
// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2018 Nuvoton Technology tomer.maimon@nuvoton.com
// Copyright 2018 Google, Inc.
 
#include "nuvoton-common-npcm7xx.dtsi"
 
/ {
   #address-cells = <1>;
   #size-cells = <1>;
   interrupt-parent = <&gic>;
 
   cpus {
       #address-cells = <1>;
       #size-cells = <0>;
       enable-method = "nuvoton,npcm750-smp";
 
       cpu@0 {
           device_type = "cpu";
           compatible = "arm,cortex-a9";
           clocks = <&clk 0>;
           clock-names = "clk_cpu";
           reg = <0>;
           next-level-cache = <&l2>;
       };
 
       cpu@1 {
           device_type = "cpu";
           compatible = "arm,cortex-a9";
           clocks = <&clk 0>;
           clock-names = "clk_cpu";
           reg = <1>;
           next-level-cache = <&l2>;
       };
   };
   soc {
       timer@3fe600 {
           compatible = "arm,cortex-a9-twd-timer";
           reg = <0x3fe600 0x20>;
           interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) |
                         IRQ_TYPE_LEVEL_HIGH)>;
           clocks = <&clk 5>;
       };
   };
};