hc
2023-11-23 7d07b3ae8ddad407913c5301877e694430a3263f
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
// SPDX-License-Identifier: GPL-2.0
#include "tegra210.dtsi"
 
/ {
   model = "NVIDIA Tegra210 P2530 main board";
   compatible = "nvidia,p2530", "nvidia,tegra210";
 
   aliases {
       rtc1 = "/rtc@7000e000";
       serial0 = &uarta;
   };
 
   chosen {
       stdout-path = "serial0:115200n8";
   };
 
   memory {
       device_type = "memory";
       reg = <0x0 0x80000000 0x0 0xc0000000>;
   };
 
   /* debug port */
   serial@70006000 {
       status = "okay";
   };
 
   i2c@7000d000 {
       status = "okay";
       clock-frequency = <400000>;
   };
 
   pmc@7000e400 {
       nvidia,invert-interrupt;
   };
 
   /* eMMC */
   sdhci@700b0600 {
       status = "okay";
       bus-width = <8>;
       non-removable;
   };
 
   clocks {
       compatible = "simple-bus";
       #address-cells = <1>;
       #size-cells = <0>;
 
       clk32k_in: clock@0 {
           compatible = "fixed-clock";
           reg = <0>;
           #clock-cells = <0>;
           clock-frequency = <32768>;
       };
   };
 
   cpus {
       cpu@0 {
           enable-method = "psci";
       };
 
       cpu@1 {
           enable-method = "psci";
       };
 
       cpu@2 {
           enable-method = "psci";
       };
 
       cpu@3 {
           enable-method = "psci";
       };
   };
 
   psci {
       compatible = "arm,psci-0.2";
       method = "smc";
   };
};