Commit 1e48754f authored by Suman Anna's avatar Suman Anna Committed by Tony Lindgren

ARM: dts: omap5-uevm: Add CMA pools and enable IPU & DSP

The CMA reserved memory nodes have been added for the IPU and DSP
remoteproc devices on the OMAP5 uEVM board. These nodes are assigned
to the respective rproc device nodes, and both the IPU and DSP remote
processors are enabled for this board.

The current CMA pools and sizes are defined statically for each device.
The starting addresses are fixed to meet current dependencies on the
remote processor firmwares, and will go away when the remote-side
code has been improved to gather this information runtime during
its initialization.

An associated pair of the rproc node and its CMA node can be disabled
later on if there is no use-case defined to use that remote processor.
Signed-off-by: default avatarSuman Anna <s-anna@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent e8661220
......@@ -15,6 +15,26 @@ memory@80000000 {
reg = <0 0x80000000 0 0x7f000000>; /* 2032 MB */
};
reserved-memory {
#address-cells = <2>;
#size-cells = <2>;
ranges;
dsp_memory_region: dsp-memory@95000000 {
compatible = "shared-dma-pool";
reg = <0 0x95000000 0 0x800000>;
reusable;
status = "okay";
};
ipu_memory_region: ipu-memory@95800000 {
compatible = "shared-dma-pool";
reg = <0 0x95800000 0 0x3800000>;
reusable;
status = "okay";
};
};
aliases {
ethernet = &ethernet;
};
......@@ -198,3 +218,13 @@ ethernet: usbether@3 {
&wlcore {
compatible = "ti,wl1837";
};
&dsp {
status = "okay";
memory-region = <&dsp_memory_region>;
};
&ipu {
status = "okay";
memory-region = <&ipu_memory_region>;
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment