blob: 55c81d08c52c113ff7e8db26f04f3adec1ee3e41 [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Rudolphbd4bcab2019-06-30 22:12:15 +02002
Elyes HAOUAS7cd8c792020-07-11 20:25:26 +02003#include <stdint.h>
4#include <stddef.h>
Asami Doi06993ee2019-08-07 13:40:53 +09005
6/*
7 * Used in probe_ramsize(). This is a weak function and it's overridden for
8 * ARMv8. Return 1 when DRAM exists at the address, otherwise return 0.
9 */
10int probe_mb(const uintptr_t dram_start, const uintptr_t size);
Patrick Rudolphbd4bcab2019-06-30 22:12:15 +020011/*
12 * Probe an area if it's read/writable.
13 * Primary use case is the detection of DRAM amount on emulators.
14 *
15 * @param dram_start Physical address of DRAM start
16 * @param probe_size Maximum size in MiB to probe for
17 * @return The detected DRAM size in MiB
18 */
19size_t probe_ramsize(const uintptr_t dram_start, const size_t probe_size);