This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Linux
Below is what I allocate DDR in device tree file:
ipu1_cma@84000000 {
compatible = "shared-dma-pool";
reg = <0x0 0x84000000 0x0 0x4000000>;
no-map;
status = "okay";
linux,phandle = <0xb7>;
phandle = <0xb7>;
};
cmem_block_mem@88000000 {
reg = <0x0 0x88000000 0x0 0xc00000>;
no-map;
status = "okay";
linux,phandle = <0x109>;
phandle = <0x109>;
};
What I want to asks is:
1, As reserved memory for IPU1, is A15 still can read/write IPU1 memory area?
2, What cmem means, can I understand it as share memory?
3, Except Reserved memory, other memory area is used by A15?
Thanks.
Hi Shravan,
About first question, in A15 application, A15 still can read/write IPU1 reserved memory , is that right?
And if so, how memory isolation works?
Thanks for you reply.
Hi Shravan,
Thanks for your support.
In my understanding, reserved memory in device tree means this area is not mapped in kernel, but A15 still can operate this memory area by specific memory physical address.
Am I right?