Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * charon board Device Tree Source
4 *
5 * Copyright (C) 2007 Semihalf
6 * Marian Balakowicz <m8@semihalf.com>
7 *
8 * Copyright (C) 2010 DENX Software Engineering GmbH
9 * Heiko Schocher <hs@denx.de>
10 */
11
12/dts-v1/;
13
14/ {
15 model = "anon,charon";
16 compatible = "anon,charon";
17 #address-cells = <1>;
18 #size-cells = <1>;
19 interrupt-parent = <&mpc5200_pic>;
20
21 cpus {
22 #address-cells = <1>;
23 #size-cells = <0>;
24
25 PowerPC,5200@0 {
26 device_type = "cpu";
27 reg = <0>;
28 d-cache-line-size = <32>;
29 i-cache-line-size = <32>;
30 d-cache-size = <0x4000>; // L1, 16K
31 i-cache-size = <0x4000>; // L1, 16K
32 timebase-frequency = <0>; // from bootloader
33 bus-frequency = <0>; // from bootloader
34 clock-frequency = <0>; // from bootloader
35 };
36 };
37
38 memory@0 {
39 device_type = "memory";
40 reg = <0x00000000 0x08000000>; // 128MB
41 };
42
43 soc5200@f0000000 {
44 #address-cells = <1>;
45 #size-cells = <1>;
46 compatible = "fsl,mpc5200-immr";
47 ranges = <0 0xf0000000 0x0000c000>;
48 reg = <0xf0000000 0x00000100>;
49 bus-frequency = <0>; // from bootloader
50 system-frequency = <0>; // from bootloader
51
52 cdm@200 {
53 compatible = "fsl,mpc5200-cdm";
54 reg = <0x200 0x38>;
55 };
56
57 mpc5200_pic: interrupt-controller@500 {
58 // 5200 interrupts are encoded into two levels;
59 interrupt-controller;
60 #interrupt-cells = <3>;
61 compatible = "fsl,mpc5200-pic";
62 reg = <0x500 0x80>;
63 };
64
65 timer@600 { // General Purpose Timer
66 compatible = "fsl,mpc5200-gpt";
67 reg = <0x600 0x10>;
68 interrupts = <1 9 0>;
69 fsl,has-wdt;
70 };
71
72 can@900 {
73 compatible = "fsl,mpc5200-mscan";
74 interrupts = <2 17 0>;
75 reg = <0x900 0x80>;
76 };
77
78 can@980 {
79 compatible = "fsl,mpc5200-mscan";
80 interrupts = <2 18 0>;
81 reg = <0x980 0x80>;
82 };
83
84 gpio_simple: gpio@b00 {
85 compatible = "fsl,mpc5200-gpio";
86 reg = <0xb00 0x40>;
87 interrupts = <1 7 0>;
88 gpio-controller;
89 #gpio-cells = <2>;
90 };
91
92 usb@1000 {
93 compatible = "fsl,mpc5200-ohci","ohci-be";
94 reg = <0x1000 0xff>;
95 interrupts = <2 6 0>;
96 };
97
98 dma-controller@1200 {
99 device_type = "dma-controller";
100 compatible = "fsl,mpc5200-bestcomm";
101 reg = <0x1200 0x80>;
102 interrupts = <3 0 0 3 1 0 3 2 0 3 3 0
103 3 4 0 3 5 0 3 6 0 3 7 0
104 3 8 0 3 9 0 3 10 0 3 11 0
105 3 12 0 3 13 0 3 14 0 3 15 0>;
106 };
107
108 xlb@1f00 {
109 compatible = "fsl,mpc5200-xlb";
110 reg = <0x1f00 0x100>;
111 };
112
113 serial@2000 { // PSC1
114 compatible = "fsl,mpc5200-psc-uart";
115 reg = <0x2000 0x100>;
116 interrupts = <2 1 0>;
117 };
118
119 serial@2400 { // PSC3
120 compatible = "fsl,mpc5200-psc-uart";
121 reg = <0x2400 0x100>;
122 interrupts = <2 3 0>;
123 };
124
125 ethernet@3000 {
126 compatible = "fsl,mpc5200-fec";
127 reg = <0x3000 0x400>;
128 local-mac-address = [ 00 00 00 00 00 00 ];
129 interrupts = <2 5 0>;
130 fixed-link = <1 1 100 0 0>;
131 };
132
133 mdio@3000 {
134 #address-cells = <1>;
135 #size-cells = <0>;
136 compatible = "fsl,mpc5200-mdio";
137 reg = <0x3000 0x400>; // fec range, since we need to setup fec interrupts
138 interrupts = <2 5 0>; // these are for "mii command finished", not link changes & co.
139 };
140
141 ata@3a00 {
142 compatible = "fsl,mpc5200-ata";
143 reg = <0x3a00 0x100>;
144 interrupts = <2 7 0>;
145 };
146
147 i2c@3d00 {
148 #address-cells = <1>;
149 #size-cells = <0>;
150 compatible = "fsl,mpc5200-i2c","fsl-i2c";
151 reg = <0x3d00 0x40>;
152 interrupts = <2 15 0>;
153 };
154
155
156 i2c@3d40 {
157 #address-cells = <1>;
158 #size-cells = <0>;
159 compatible = "fsl,mpc5200-i2c","fsl-i2c";
160 reg = <0x3d40 0x40>;
161 interrupts = <2 16 0>;
162
163 dtt@28 {
164 compatible = "national,lm80";
165 reg = <0x28>;
166 };
167
168 rtc@68 {
169 compatible = "dallas,ds1374";
170 reg = <0x68>;
171 };
172 };
173
174 sram@8000 {
175 compatible = "fsl,mpc5200-sram";
176 reg = <0x8000 0x4000>;
177 };
178 };
179
180 localbus {
181 compatible = "fsl,mpc5200-lpb","simple-bus";
182 #address-cells = <2>;
183 #size-cells = <1>;
184 ranges = < 0 0 0xfc000000 0x02000000
185 1 0 0xe0000000 0x04000000 // CS1 range, SM501
186 3 0 0xe8000000 0x00080000>;
187
188 flash@0,0 {
189 compatible = "cfi-flash";
190 reg = <0 0 0x02000000>;
191 bank-width = <4>;
192 device-width = <2>;
193 #size-cells = <1>;
194 #address-cells = <1>;
195 };
196
197 display@1,0 {
198 compatible = "smi,sm501";
199 reg = <1 0x00000000 0x00800000
200 1 0x03e00000 0x00200000>;
201 mode = "640x480-32@60";
202 interrupts = <1 1 3>;
203 little-endian;
204 };
205
206 mram0@3,0 {
207 compatible = "mtd-ram";
208 reg = <3 0x00000 0x80000>;
209 bank-width = <1>;
210 };
211 };
212
213 pci@f0000d00 {
214 #interrupt-cells = <1>;
215 #size-cells = <2>;
216 #address-cells = <3>;
217 device_type = "pci";
218 compatible = "fsl,mpc5200-pci";
219 reg = <0xf0000d00 0x100>;
220 interrupt-map-mask = <0xf800 0 0 7>;
221 interrupt-map = <0xc000 0 0 1 &mpc5200_pic 0 0 3
222 0xc000 0 0 2 &mpc5200_pic 0 0 3
223 0xc000 0 0 3 &mpc5200_pic 0 0 3
224 0xc000 0 0 4 &mpc5200_pic 0 0 3>;
225 clock-frequency = <0>; // From boot loader
226 interrupts = <2 8 0 2 9 0 2 10 0>;
227 bus-range = <0 0>;
228 ranges = <0x42000000 0 0x80000000 0x80000000 0 0x10000000>,
229 <0x02000000 0 0x90000000 0x90000000 0 0x10000000>,
230 <0x01000000 0 0x00000000 0xa0000000 0 0x01000000>;
231 };
232};
1/*
2 * charon board Device Tree Source
3 *
4 * Copyright (C) 2007 Semihalf
5 * Marian Balakowicz <m8@semihalf.com>
6 *
7 * Copyright (C) 2010 DENX Software Engineering GmbH
8 * Heiko Schocher <hs@denx.de>
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 */
15
16/dts-v1/;
17
18/ {
19 model = "anon,charon";
20 compatible = "anon,charon";
21 #address-cells = <1>;
22 #size-cells = <1>;
23 interrupt-parent = <&mpc5200_pic>;
24
25 cpus {
26 #address-cells = <1>;
27 #size-cells = <0>;
28
29 PowerPC,5200@0 {
30 device_type = "cpu";
31 reg = <0>;
32 d-cache-line-size = <32>;
33 i-cache-line-size = <32>;
34 d-cache-size = <0x4000>; // L1, 16K
35 i-cache-size = <0x4000>; // L1, 16K
36 timebase-frequency = <0>; // from bootloader
37 bus-frequency = <0>; // from bootloader
38 clock-frequency = <0>; // from bootloader
39 };
40 };
41
42 memory {
43 device_type = "memory";
44 reg = <0x00000000 0x08000000>; // 128MB
45 };
46
47 soc5200@f0000000 {
48 #address-cells = <1>;
49 #size-cells = <1>;
50 compatible = "fsl,mpc5200-immr";
51 ranges = <0 0xf0000000 0x0000c000>;
52 reg = <0xf0000000 0x00000100>;
53 bus-frequency = <0>; // from bootloader
54 system-frequency = <0>; // from bootloader
55
56 cdm@200 {
57 compatible = "fsl,mpc5200-cdm";
58 reg = <0x200 0x38>;
59 };
60
61 mpc5200_pic: interrupt-controller@500 {
62 // 5200 interrupts are encoded into two levels;
63 interrupt-controller;
64 #interrupt-cells = <3>;
65 compatible = "fsl,mpc5200-pic";
66 reg = <0x500 0x80>;
67 };
68
69 timer@600 { // General Purpose Timer
70 compatible = "fsl,mpc5200-gpt";
71 reg = <0x600 0x10>;
72 interrupts = <1 9 0>;
73 fsl,has-wdt;
74 };
75
76 can@900 {
77 compatible = "fsl,mpc5200-mscan";
78 interrupts = <2 17 0>;
79 reg = <0x900 0x80>;
80 };
81
82 can@980 {
83 compatible = "fsl,mpc5200-mscan";
84 interrupts = <2 18 0>;
85 reg = <0x980 0x80>;
86 };
87
88 gpio_simple: gpio@b00 {
89 compatible = "fsl,mpc5200-gpio";
90 reg = <0xb00 0x40>;
91 interrupts = <1 7 0>;
92 gpio-controller;
93 #gpio-cells = <2>;
94 };
95
96 usb@1000 {
97 compatible = "fsl,mpc5200-ohci","ohci-be";
98 reg = <0x1000 0xff>;
99 interrupts = <2 6 0>;
100 };
101
102 dma-controller@1200 {
103 device_type = "dma-controller";
104 compatible = "fsl,mpc5200-bestcomm";
105 reg = <0x1200 0x80>;
106 interrupts = <3 0 0 3 1 0 3 2 0 3 3 0
107 3 4 0 3 5 0 3 6 0 3 7 0
108 3 8 0 3 9 0 3 10 0 3 11 0
109 3 12 0 3 13 0 3 14 0 3 15 0>;
110 };
111
112 xlb@1f00 {
113 compatible = "fsl,mpc5200-xlb";
114 reg = <0x1f00 0x100>;
115 };
116
117 serial@2000 { // PSC1
118 compatible = "fsl,mpc5200-psc-uart";
119 reg = <0x2000 0x100>;
120 interrupts = <2 1 0>;
121 };
122
123 serial@2400 { // PSC3
124 compatible = "fsl,mpc5200-psc-uart";
125 reg = <0x2400 0x100>;
126 interrupts = <2 3 0>;
127 };
128
129 ethernet@3000 {
130 compatible = "fsl,mpc5200-fec";
131 reg = <0x3000 0x400>;
132 local-mac-address = [ 00 00 00 00 00 00 ];
133 interrupts = <2 5 0>;
134 fixed-link = <1 1 100 0 0>;
135 };
136
137 mdio@3000 {
138 #address-cells = <1>;
139 #size-cells = <0>;
140 compatible = "fsl,mpc5200-mdio";
141 reg = <0x3000 0x400>; // fec range, since we need to setup fec interrupts
142 interrupts = <2 5 0>; // these are for "mii command finished", not link changes & co.
143 };
144
145 ata@3a00 {
146 compatible = "fsl,mpc5200-ata";
147 reg = <0x3a00 0x100>;
148 interrupts = <2 7 0>;
149 };
150
151 i2c@3d00 {
152 #address-cells = <1>;
153 #size-cells = <0>;
154 compatible = "fsl,mpc5200-i2c","fsl-i2c";
155 reg = <0x3d00 0x40>;
156 interrupts = <2 15 0>;
157 };
158
159
160 i2c@3d40 {
161 #address-cells = <1>;
162 #size-cells = <0>;
163 compatible = "fsl,mpc5200-i2c","fsl-i2c";
164 reg = <0x3d40 0x40>;
165 interrupts = <2 16 0>;
166
167 dtt@28 {
168 compatible = "national,lm80";
169 reg = <0x28>;
170 };
171
172 rtc@68 {
173 compatible = "dallas,ds1374";
174 reg = <0x68>;
175 };
176 };
177
178 sram@8000 {
179 compatible = "fsl,mpc5200-sram";
180 reg = <0x8000 0x4000>;
181 };
182 };
183
184 localbus {
185 compatible = "fsl,mpc5200-lpb","simple-bus";
186 #address-cells = <2>;
187 #size-cells = <1>;
188 ranges = < 0 0 0xfc000000 0x02000000
189 1 0 0xe0000000 0x04000000 // CS1 range, SM501
190 3 0 0xe8000000 0x00080000>;
191
192 flash@0,0 {
193 compatible = "cfi-flash";
194 reg = <0 0 0x02000000>;
195 bank-width = <4>;
196 device-width = <2>;
197 #size-cells = <1>;
198 #address-cells = <1>;
199 };
200
201 display@1,0 {
202 compatible = "smi,sm501";
203 reg = <1 0x00000000 0x00800000
204 1 0x03e00000 0x00200000>;
205 mode = "640x480-32@60";
206 interrupts = <1 1 3>;
207 little-endian;
208 };
209
210 mram0@3,0 {
211 compatible = "mtd-ram";
212 reg = <3 0x00000 0x80000>;
213 bank-width = <1>;
214 };
215 };
216
217 pci@f0000d00 {
218 #interrupt-cells = <1>;
219 #size-cells = <2>;
220 #address-cells = <3>;
221 device_type = "pci";
222 compatible = "fsl,mpc5200-pci";
223 reg = <0xf0000d00 0x100>;
224 interrupt-map-mask = <0xf800 0 0 7>;
225 interrupt-map = <0xc000 0 0 1 &mpc5200_pic 0 0 3
226 0xc000 0 0 2 &mpc5200_pic 0 0 3
227 0xc000 0 0 3 &mpc5200_pic 0 0 3
228 0xc000 0 0 4 &mpc5200_pic 0 0 3>;
229 clock-frequency = <0>; // From boot loader
230 interrupts = <2 8 0 2 9 0 2 10 0>;
231 bus-range = <0 0>;
232 ranges = <0x42000000 0 0x80000000 0x80000000 0 0x10000000
233 0x02000000 0 0x90000000 0x90000000 0 0x10000000
234 0x01000000 0 0x00000000 0xa0000000 0 0x01000000>;
235 };
236};