Simon Glass | e704c18 | 2019-04-25 21:58:47 -0600 | [diff] [blame] | 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 | |
Tom Rini | dec7ea0 | 2024-05-20 13:35:03 -0600 | [diff] [blame] | 12 | #include <linux/types.h> |
| 13 | |
Simon Glass | 2562808 | 2019-09-25 08:11:41 -0600 | [diff] [blame] | 14 | /** |
| 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 Glass | e704c18 | 2019-04-25 21:58:47 -0600 | [diff] [blame] | 20 | struct arch_spl_handoff { |
Simon Glass | 2562808 | 2019-09-25 08:11:41 -0600 | [diff] [blame] | 21 | ulong usable_ram_top; |
| 22 | void *hob_list; |
Simon Glass | e704c18 | 2019-04-25 21:58:47 -0600 | [diff] [blame] | 23 | }; |
| 24 | |
| 25 | #endif |