hc
2024-10-12 a5969cabbb4660eab42b6ef0412cbbd1200cf14d
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
/*
 * Copyright 2014 Oleksij Rempel <linux@rempel-privat.de>
 *
 * Licensed under the X11 license or the GPL v2 (or later)
 */
 
#include <dt-bindings/clock/alphascale,asm9260.h>
 
/ {
   #address-cells = <1>;
   #size-cells = <1>;
   interrupt-parent = <&icoll>;
 
   memory {
       device_type = "memory";
       reg = <0x20000000 0x2000000>;
   };
 
   cpus {
       #address-cells = <0>;
       #size-cells = <0>;
 
       cpu {
           compatible = "arm,arm926ej-s";
           device_type = "cpu";
           clocks = <&acc CLKID_SYS_CPU>;
       };
   };
 
   osc24m: oscillator {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <24000000>;
       clock-accuracy = <30000>;
   };
 
   soc {
       #address-cells = <1>;
       #size-cells = <1>;
       compatible = "simple-bus";
       ranges;
 
       acc: clock-controller@80040000 {
           compatible = "alphascale,asm9260-clock-controller";
           #clock-cells = <1>;
           clocks = <&osc24m>;
           reg = <0x80040000 0x204>;
       };
 
       icoll: interrupt-controller@80054000 {
           compatible = "alphascale,asm9260-icoll";
           interrupt-controller;
           #interrupt-cells = <1>;
           reg = <0x80054000 0x200>;
       };
 
       timer0: timer@80088000 {
           compatible = "alphascale,asm9260-timer";
           reg = <0x80088000 0x4000>;
           clocks = <&acc CLKID_AHB_TIMER0>;
           interrupts = <29>;
       };
   };
};