diff options
author | Jacob Stiffler <j-stiffler@ti.com> | 2016-03-01 20:59:56 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2016-03-01 18:05:00 -0500 |
commit | 3ceebfaf5f0828a173da66e48a5a562634e79470 (patch) | |
tree | 3c9b42e276783beb62e21ff2b683764f8c8c82f3 /recipes-kernel | |
parent | ecdf9adb4d880636b9eef73ab3b4a0f9ed34060e (diff) | |
download | meta-ti-3ceebfaf5f0828a173da66e48a5a562634e79470.tar.gz |
linux: cmem: k2g-evm: Add CMEM regions for k2g-evm
Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-kernel')
-rw-r--r-- | recipes-kernel/linux/files/k2g-evm/cmem.dtsi | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/recipes-kernel/linux/files/k2g-evm/cmem.dtsi b/recipes-kernel/linux/files/k2g-evm/cmem.dtsi new file mode 100644 index 00000000..f30bf5ba --- /dev/null +++ b/recipes-kernel/linux/files/k2g-evm/cmem.dtsi | |||
@@ -0,0 +1,54 @@ | |||
1 | / { | ||
2 | reserved-memory { | ||
3 | mpm_block_mem_0: mpm_block_mem@820000000 { | ||
4 | reg = <0x00000008 0x20000000 0x00000000 0x02000000>; | ||
5 | no-map; | ||
6 | status = "okay"; | ||
7 | }; | ||
8 | |||
9 | cmem_block_mem_0: cmem_block_mem@829000000 { | ||
10 | reg = <0x00000008 0x29000000 0x00000000 0x17000000>; | ||
11 | no-map; | ||
12 | status = "okay"; | ||
13 | }; | ||
14 | |||
15 | cmem_block_mem_1: cmem_block_mem@00c000000 { | ||
16 | reg = <0x00000000 0x0c000000 0x00000000 0x00100000>; | ||
17 | no-map; | ||
18 | status = "okay"; | ||
19 | }; | ||
20 | |||
21 | cmem_block_mem_2: cmem_block_mem@822000000 { | ||
22 | reg = <0x00000008 0x22000000 0x00000000 0x07000000>; | ||
23 | no-map; | ||
24 | status = "okay"; | ||
25 | }; | ||
26 | }; | ||
27 | |||
28 | cmem { | ||
29 | compatible = "ti,cmem"; | ||
30 | #address-cells = <1>; | ||
31 | #size-cells = <0>; | ||
32 | |||
33 | #pool-size-cells = <2>; | ||
34 | |||
35 | status = "okay"; | ||
36 | |||
37 | cmem_block_0: cmem_block@0 { | ||
38 | reg = <0>; | ||
39 | memory-region = <&cmem_block_mem_0>; | ||
40 | cmem-buf-pools = <1 0x00000000 0x17000000>; | ||
41 | }; | ||
42 | |||
43 | cmem_block_1: cmem_block@1 { | ||
44 | reg = <1>; | ||
45 | memory-region = <&cmem_block_mem_1>; | ||
46 | }; | ||
47 | |||
48 | cmem_block_2: cmem_block@2 { | ||
49 | reg = <2>; | ||
50 | memory-region = <&cmem_block_mem_2>; | ||
51 | }; | ||
52 | }; | ||
53 | |||
54 | }; | ||