Skip to content

Commit 0774ce9

Browse files
Chen Peng1nashif
authored andcommitted
tests: mem_map: limit memory below 0x10000000 on up_squared.
there is a memory hole from address 0x10000000-0x12150fff in the ram on up_squared, we don't have access to read/write this range, so limit the memory range below 0x10000000. Signed-off-by: Chen Peng1 <[email protected]>
1 parent 380a800 commit 0774ce9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* Copyright (c) 2021 Intel Corporation
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/* there is a memory hole from address 0x10000000-0x12150fff
8+
* in the ram on up_squared, we don't have access to read/write
9+
* this range, so limit the memory range below 0x10000000.
10+
*/
11+
&dram0 {
12+
reg = <0x0 0x10000000>;
13+
};

0 commit comments

Comments
 (0)