blob: aec49b9b815c6e1a1a683c516e9ceeecd1ae844c [file] [log] [blame]
Simon Glass62be5dd2019-04-25 21:58:47 -06001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Architecture-specific SPL handoff information for x86
4 *
5 * Copyright 2018 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
9#ifndef __x86_asm_handoff_h
10#define __x86_asm_handoff_h
11
Simon Glassc3863ea2019-09-25 08:11:41 -060012/**
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 * @hob_list: Start of FSP hand-off blocks (HOBs)
17 */
Simon Glass62be5dd2019-04-25 21:58:47 -060018struct arch_spl_handoff {
Simon Glassc3863ea2019-09-25 08:11:41 -060019 ulong usable_ram_top;
20 void *hob_list;
Simon Glass62be5dd2019-04-25 21:58:47 -060021};
22
23#endif