1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Passing basic information from SPL to U-Boot proper
5 * Copyright 2018 Google, Inc
11 #if CONFIG_IS_ENABLED(HANDOFF)
13 #include <asm/handoff.h>
16 * struct spl_handoff - information passed from SPL to U-Boot proper
18 * @ram_size: Value to use for gd->ram_size
21 struct arch_spl_handoff arch;
23 #ifdef CONFIG_NR_DRAM_BANKS
27 } ram_bank[CONFIG_NR_DRAM_BANKS];
31 void handoff_save_dram(struct spl_handoff *ho);
32 void handoff_load_dram_size(struct spl_handoff *ho);
33 void handoff_load_dram_banks(struct spl_handoff *ho);