Because of the holidays, TI E2E™ design support forum responses will be delayed from Dec. 25 through Jan. 2. Thank you for your patience.

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.

Linux/DRA71: DDR allocation in Linux device tree

Part Number: DRA71

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.