Hi i need to modify dts to adapt to 1GB ddr i have modified and its working but when i tried to run an ai example it crashes and wont run. can anyone confirm if my dts is correct.
if possible can you give examples of 1GB 512MB and 256MB
reserved-memory {
#address-cells = <2>;
#size-cells = <2>;
ranges;
linux,cma {
compatible = "shared-dma-pool";
reusable;
alloc-ranges = <0 0x80000000 0 0x20000000>;
size = <0 0x8000000>;
linux,cma-default;
};
ethosu_mem: ethosu_region@A0000000 {
compatible = "shared-dma-pool";
reusable;
reg = <0x0 0xA0000000 0x0 0x800000>;
};
vdev0vring0: vdev0vring0@92000000 {
reg = <0 0x92000000 0 0x8000>;
no-map;
};
vdev0vring1: vdev0vring1@92008000 {
reg = <0 0x92008000 0 0x8000>;
no-map;
};
vdev1vring0: vdev1vring0@92010000 {
reg = <0 0x92010000 0 0x8000>;
no-map;
};
vdev1vring1: vdev1vring1@92018000 {
reg = <0 0x92018000 0 0x8000>;
no-map;
};
rsc_table: rsc-table@2021e000 {
reg = <0 0x2021e000 0 0x1000>;
no-map;
};
vdevbuffer: vdevbuffer@92020000 {
compatible = "shared-dma-pool";
reg = <0 0x92020000 0 0x100000>;
no-map;
};
ele_reserved: ele-reserved@92120000 {
compatible = "shared-dma-pool";
reg = <0 0x92120000 0 0x100000>;
no-map;
};
};
@imx93