Michael Trimarchi | 906e3cc | 2020-01-05 16:51:13 +0100 | [diff] [blame] | 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 | */ |
| 17 | struct arch_spl_handoff { |
| 18 | ulong usable_ram_top; |
| 19 | }; |
| 20 | |
| 21 | #endif |