hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
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
Annapurna Labs Alpine Platform Device Tree Bindings
---------------------------------------------------------------
 
Boards in the Alpine family shall have the following properties:
 
* Required root node properties:
compatible: must contain "al,alpine"
 
* Example:
 
/ {
   model = "Annapurna Labs Alpine Dev Board";
   compatible = "al,alpine";
 
   ...
}
 
* CPU node:
 
The Alpine platform includes cortex-a15 cores.
enable-method: must be "al,alpine-smp" to allow smp  [1]
 
Example:
 
cpus {
   #address-cells = <1>;
   #size-cells = <0>;
   enable-method = "al,alpine-smp";
 
   cpu@0 {
       compatible = "arm,cortex-a15";
       device_type = "cpu";
       reg = <0>;
   };
 
   cpu@1 {
       compatible = "arm,cortex-a15";
       device_type = "cpu";
       reg = <1>;
   };
 
   cpu@2 {
       compatible = "arm,cortex-a15";
       device_type = "cpu";
       reg = <2>;
   };
 
   cpu@3 {
       compatible = "arm,cortex-a15";
       device_type = "cpu";
       reg = <3>;
   };
};
 
 
* Alpine CPU resume registers
 
The CPU resume register are used to define required resume address after
reset.
 
Properties:
- compatible : Should contain "al,alpine-cpu-resume".
- reg : Offset and length of the register set for the device
 
Example:
 
cpu_resume {
   compatible = "al,alpine-cpu-resume";
   reg = <0xfbff5ed0 0x30>;
};
 
* Alpine System-Fabric Service Registers
 
The System-Fabric Service Registers allow various operation on CPU and
system fabric, like powering CPUs off.
 
Properties:
- compatible : Should contain "al,alpine-sysfabric-service" and "syscon".
- reg : Offset and length of the register set for the device
 
Example:
 
nb_service {
        compatible = "al,alpine-sysfabric-service", "syscon";
        reg = <0xfb070000 0x10000>;
};
 
[1] arm/cpu-enable-method/al,alpine-smp