Merge branch 'printk-rework' into for-linus
[linux-2.6-microblaze.git] / arch / arm / boot / dts / mstar-v7.dtsi
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2020 thingy.jp.
4  * Author: Daniel Palmer <daniel@thingy.jp>
5  */
6
7 #include <dt-bindings/interrupt-controller/irq.h>
8 #include <dt-bindings/interrupt-controller/arm-gic.h>
9 #include <dt-bindings/clock/mstar-msc313-mpll.h>
10
11 / {
12         #address-cells = <1>;
13         #size-cells = <1>;
14         interrupt-parent = <&gic>;
15
16         cpus: cpus {
17                 #address-cells = <1>;
18                 #size-cells = <0>;
19
20                 cpu0: cpu@0 {
21                         device_type = "cpu";
22                         compatible = "arm,cortex-a7";
23                         reg = <0x0>;
24                 };
25         };
26
27         arch_timer {
28                 compatible = "arm,armv7-timer";
29                 interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2)
30                                 | IRQ_TYPE_LEVEL_LOW)>,
31                              <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2)
32                                 | IRQ_TYPE_LEVEL_LOW)>,
33                              <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2)
34                                 | IRQ_TYPE_LEVEL_LOW)>,
35                              <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2)
36                                 | IRQ_TYPE_LEVEL_LOW)>;
37                 /*
38                  * we shouldn't need this but the vendor
39                  * u-boot is broken
40                  */
41                 clock-frequency = <6000000>;
42         };
43
44         pmu: pmu {
45                 compatible = "arm,cortex-a7-pmu";
46                 interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
47                 interrupt-affinity = <&cpu0>;
48         };
49
50         clocks: clocks {
51                 xtal: xtal {
52                         #clock-cells = <0>;
53                         compatible = "fixed-clock";
54                         clock-frequency = <24000000>;
55                 };
56
57                 rtc_xtal: rtc_xtal {
58                         #clock-cells = <0>;
59                         compatible = "fixed-clock";
60                         clock-frequency = <32768>;
61                         status = "disabled";
62                 };
63         };
64
65         soc: soc {
66                 compatible = "simple-bus";
67                 #address-cells = <1>;
68                 #size-cells = <1>;
69                 ranges = <0x16001000 0x16001000 0x00007000>,
70                          <0x1f000000 0x1f000000 0x00400000>,
71                          <0xa0000000 0xa0000000 0x20000>;
72
73                 gic: interrupt-controller@16001000 {
74                         compatible = "arm,cortex-a7-gic";
75                         reg = <0x16001000 0x1000>,
76                               <0x16002000 0x2000>,
77                               <0x16004000 0x2000>,
78                               <0x16006000 0x2000>;
79                         #interrupt-cells = <3>;
80                         interrupt-controller;
81                         interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2)
82                                         | IRQ_TYPE_LEVEL_LOW)>;
83                 };
84
85                 riu: bus@1f000000 {
86                         compatible = "simple-bus";
87                         reg = <0x1f000000 0x00400000>;
88                         #address-cells = <1>;
89                         #size-cells = <1>;
90                         ranges = <0x0 0x1f000000 0x00400000>;
91
92                         pmsleep: syscon@1c00 {
93                                 compatible = "mstar,msc313-pmsleep", "syscon";
94                                 reg = <0x1c00 0x100>;
95                         };
96
97                         reboot {
98                                 compatible = "syscon-reboot";
99                                 regmap = <&pmsleep>;
100                                 offset = <0xb8>;
101                                 mask = <0x79>;
102                         };
103
104                         intc_fiq: interrupt-controller@201310 {
105                                 compatible = "mstar,mst-intc";
106                                 reg = <0x201310 0x40>;
107                                 #interrupt-cells = <3>;
108                                 interrupt-controller;
109                                 interrupt-parent = <&gic>;
110                                 mstar,irqs-map-range = <96 127>;
111                         };
112
113                         intc_irq: interrupt-controller@201350 {
114                                 compatible = "mstar,mst-intc";
115                                 reg = <0x201350 0x40>;
116                                 #interrupt-cells = <3>;
117                                 interrupt-controller;
118                                 interrupt-parent = <&gic>;
119                                 mstar,irqs-map-range = <32 95>;
120                                 mstar,intc-no-eoi;
121                         };
122
123                         l3bridge: l3bridge@204400 {
124                                 compatible = "mstar,l3bridge";
125                                 reg = <0x204400 0x200>;
126                         };
127
128                         mpll: mpll@206000 {
129                                 compatible = "mstar,msc313-mpll";
130                                 #clock-cells = <1>;
131                                 reg = <0x206000 0x200>;
132                                 clocks = <&xtal>;
133                         };
134
135                         gpio: gpio@207800 {
136                                 #gpio-cells = <2>;
137                                 reg = <0x207800 0x200>;
138                                 gpio-controller;
139                                 #interrupt-cells = <2>;
140                                 interrupt-controller;
141                                 interrupt-parent = <&intc_fiq>;
142                                 status = "disabled";
143                         };
144
145                         pm_uart: uart@221000 {
146                                 compatible = "ns16550a";
147                                 reg = <0x221000 0x100>;
148                                 reg-shift = <3>;
149                                 interrupts-extended = <&intc_irq GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
150                                 clock-frequency = <172000000>;
151                                 status = "disabled";
152                         };
153                 };
154
155                 imi: sram@a0000000 {
156                         compatible = "mmio-sram";
157                         reg = <0xa0000000 0x10000>;
158                 };
159         };
160 };