blob: 93c5db13828cb90d95472df89dc7bc5346dfe70b [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
Asami Doi06993ee2019-08-07 13:40:53 +09003
4/*
5 * Used in probe_ramsize(). This is a weak function and it's overridden for
6 * ARMv8. Return 1 when DRAM exists at the address, otherwise return 0.
7 */
8int probe_mb(const uintptr_t dram_start, const uintptr_t size);
Patrick Rudolphbd4bcab2019-06-30 22:12:15 +02009/*
10 * Probe an area if it's read/writable.
11 * Primary use case is the detection of DRAM amount on emulators.
12 *
13 * @param dram_start Physical address of DRAM start
14 * @param probe_size Maximum size in MiB to probe for
15 * @return The detected DRAM size in MiB
16 */
17size_t probe_ramsize(const uintptr_t dram_start, const size_t probe_size);