hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
// SPDX-License-Identifier: GPL-2.0
#include "bcm283x.dtsi"
#include "bcm2835-common.dtsi"
#include "bcm2835-rpi-common.dtsi"
 
/ {
   compatible = "brcm,bcm2835";
 
   cpus {
       #address-cells = <1>;
       #size-cells = <0>;
 
       cpu@0 {
           device_type = "cpu";
           compatible = "arm,arm1176jzf-s";
           reg = <0x0>;
       };
   };
 
   soc {
       ranges = <0x7e000000 0x20000000 0x02000000>;
       dma-ranges = <0x40000000 0x00000000 0x20000000>;
   };
 
   arm-pmu {
       compatible = "arm,arm1176-pmu";
   };
};
 
&cpu_thermal {
   coefficients = <(-538)    407000>;
};
 
/* enable thermal sensor with the correct compatible property set */
&thermal {
   compatible = "brcm,bcm2835-thermal";
   status = "okay";
};