Commit 0774ce94 authored by Peng Chen's avatar Peng Chen Committed by Anas Nashif
Browse files

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: default avatarChen Peng1 <peng1.chen@intel.com>
parent 380a800b
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2021 Intel Corporation
 *
 * SPDX-License-Identifier: Apache-2.0
 */

/* 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.
 */
&dram0 {
	reg = <0x0 0x10000000>;
};