xref: /freebsd/sys/contrib/device-tree/src/arm/st/ste-db8500.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later
2*f126890aSEmmanuel Vadot
3*f126890aSEmmanuel Vadot#include "ste-dbx5x0.dtsi"
4*f126890aSEmmanuel Vadot
5*f126890aSEmmanuel Vadot/ {
6*f126890aSEmmanuel Vadot	cpus {
7*f126890aSEmmanuel Vadot		cpu@300 {
8*f126890aSEmmanuel Vadot			operating-points = <998400 0
9*f126890aSEmmanuel Vadot					    798720 0
10*f126890aSEmmanuel Vadot					    399360 0
11*f126890aSEmmanuel Vadot					    199680 0>;
12*f126890aSEmmanuel Vadot		};
13*f126890aSEmmanuel Vadot	};
14*f126890aSEmmanuel Vadot
15*f126890aSEmmanuel Vadot	reserved-memory {
16*f126890aSEmmanuel Vadot		#address-cells = <1>;
17*f126890aSEmmanuel Vadot		#size-cells = <1>;
18*f126890aSEmmanuel Vadot		ranges;
19*f126890aSEmmanuel Vadot
20*f126890aSEmmanuel Vadot		/* Modem trace memory */
21*f126890aSEmmanuel Vadot		ram@6000000 {
22*f126890aSEmmanuel Vadot			reg = <0x06000000 0x00f00000>;
23*f126890aSEmmanuel Vadot			no-map;
24*f126890aSEmmanuel Vadot		};
25*f126890aSEmmanuel Vadot
26*f126890aSEmmanuel Vadot		/* Modem shared memory */
27*f126890aSEmmanuel Vadot		ram@6f00000 {
28*f126890aSEmmanuel Vadot			reg = <0x06f00000 0x00100000>;
29*f126890aSEmmanuel Vadot			no-map;
30*f126890aSEmmanuel Vadot		};
31*f126890aSEmmanuel Vadot
32*f126890aSEmmanuel Vadot		/* Modem private memory */
33*f126890aSEmmanuel Vadot		ram@7000000 {
34*f126890aSEmmanuel Vadot			reg = <0x07000000 0x01000000>;
35*f126890aSEmmanuel Vadot			no-map;
36*f126890aSEmmanuel Vadot		};
37*f126890aSEmmanuel Vadot
38*f126890aSEmmanuel Vadot		/*
39*f126890aSEmmanuel Vadot		 * Initial Secure Software ISSW memory
40*f126890aSEmmanuel Vadot		 *
41*f126890aSEmmanuel Vadot		 * This is probably only used if the kernel tries
42*f126890aSEmmanuel Vadot		 * to actually call into trustzone to run secure
43*f126890aSEmmanuel Vadot		 * applications, which the mainline kernel probably
44*f126890aSEmmanuel Vadot		 * will not do on this old chipset. But you can never
45*f126890aSEmmanuel Vadot		 * be too careful, so reserve this memory anyway.
46*f126890aSEmmanuel Vadot		 */
47*f126890aSEmmanuel Vadot		ram@17f00000 {
48*f126890aSEmmanuel Vadot			reg = <0x17f00000 0x00100000>;
49*f126890aSEmmanuel Vadot			no-map;
50*f126890aSEmmanuel Vadot		};
51*f126890aSEmmanuel Vadot	};
52*f126890aSEmmanuel Vadot};
53