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.