hc
2023-12-11 1f93a7dfd1f8d5ff7a5c53246c7534fe2332d6f4
kernel/arch/arm/boot/dts/omap5-uevm.dts
....@@ -1,9 +1,6 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
2
- * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
3
- *
4
- * This program is free software; you can redistribute it and/or modify
5
- * it under the terms of the GNU General Public License version 2 as
6
- * published by the Free Software Foundation.
3
+ * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
74 */
85 /dts-v1/;
96
....@@ -16,6 +13,26 @@
1613 memory@80000000 {
1714 device_type = "memory";
1815 reg = <0 0x80000000 0 0x7f000000>; /* 2032 MB */
16
+ };
17
+
18
+ reserved-memory {
19
+ #address-cells = <2>;
20
+ #size-cells = <2>;
21
+ ranges;
22
+
23
+ dsp_memory_region: dsp-memory@95000000 {
24
+ compatible = "shared-dma-pool";
25
+ reg = <0 0x95000000 0 0x800000>;
26
+ reusable;
27
+ status = "okay";
28
+ };
29
+
30
+ ipu_memory_region: ipu-memory@95800000 {
31
+ compatible = "shared-dma-pool";
32
+ reg = <0 0x95800000 0 0x3800000>;
33
+ reusable;
34
+ status = "okay";
35
+ };
1936 };
2037
2138 aliases {
....@@ -201,3 +218,17 @@
201218 &wlcore {
202219 compatible = "ti,wl1837";
203220 };
221
+
222
+&dsp {
223
+ status = "okay";
224
+ memory-region = <&dsp_memory_region>;
225
+ ti,timers = <&timer5>;
226
+ ti,watchdog-timers = <&timer6>;
227
+};
228
+
229
+&ipu {
230
+ status = "okay";
231
+ memory-region = <&ipu_memory_region>;
232
+ ti,timers = <&timer3>;
233
+ ti,watchdog-timers = <&timer9>, <&timer11>;
234
+};