1 /* 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 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 * @hob_list: Start of FSP hand-off blocks (HOBs) 17 */ 18 struct arch_spl_handoff { 19 ulong usable_ram_top; 20 void *hob_list; 21 }; 22 23 #endif 24