1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Architecture-specific SPL handoff information for ARM
4 *
5 * Copyright 2019 Amarula Solutions, BV
6 * Written by Michael Trimarchi <michael@amarulasolutions.com>
7 */
8
9#ifndef __asm_handoff_h
10#define __asm_handoff_h
11
12/**
13 * struct arch_spl_handoff - architecture-specific handoff info
14 *
15 * @usable_ram_top: Value returned by board_get_usable_ram_top() in SPL
16 */
17struct arch_spl_handoff {
18	ulong usable_ram_top;
19};
20
21#endif
22