1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-04-21 03:58:58 +00:00
Files
meta-ti/recipes-kernel/linux/files/k2e-evm/cmem.dtsi
Jacob Stiffler 24005c9e12 linux: cmem: Update reserved CMEM regions
* dra7xx:
  - Increase DDR region required to pass OpenCL conformance
  - Add OCMC region
* k2e-evm, k2l-evm:
  - Add reserved regions for these machines

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
2016-02-01 17:08:10 -05:00

43 lines
807 B
Plaintext

/ {
reserved-memory {
mpm_block_mem_0: mpm_block_mem@820000000 {
reg = <0x00000008 0x20000000 0x00000000 0x02000000>;
no-map;
status = "okay";
};
cmem_block_mem_0: cmem_block_mem@829000000 {
reg = <0x00000008 0x22000000 0x00000000 0x1E000000>;
no-map;
status = "okay";
};
cmem_block_mem_1: cmem_block_mem@00c100000 {
reg = <0x00000000 0x0c000000 0x00000000 0x00180000>;
no-map;
status = "okay";
};
};
cmem {
compatible = "ti,cmem";
#address-cells = <1>;
#size-cells = <0>;
#pool-size-cells = <2>;
status = "okay";
cmem_block_0: cmem_block@0 {
reg = <0>;
memory-region = <&cmem_block_mem_0>;
cmem-buf-pools = <1 0x00000000 0x1E000000>;
};
cmem_block_1: cmem_block@1 {
reg = <1>;
memory-region = <&cmem_block_mem_1>;
};
};
};