blob: 5f6691939eb559489c71e885b7d44846155dd9db [file] [log] [blame]
Simon Glasse704c182019-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
Tom Rini412a0212024-04-27 08:10:56 -060012#include <linux/types.h>
13
Simon Glass25628082019-09-25 08:11:41 -060014/**
15 * struct arch_spl_handoff - architecture-specific handoff info
16 *
17 * @usable_ram_top: Value returned by board_get_usable_ram_top() in SPL
18 * @hob_list: Start of FSP hand-off blocks (HOBs)
19 */
Simon Glasse704c182019-04-25 21:58:47 -060020struct arch_spl_handoff {
Simon Glass25628082019-09-25 08:11:41 -060021 ulong usable_ram_top;
22 void *hob_list;
Simon Glasse704c182019-04-25 21:58:47 -060023};
24
25#endif