/* SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef AMD_BLOCK_MEMMAP_H #define AMD_BLOCK_MEMMAP_H #include #include DECLARE_REGION(early_reserved_dram) struct memmap_early_dram { uint32_t base; uint32_t size; }; void memmap_stash_early_dram_usage(void); const struct memmap_early_dram *memmap_get_early_dram_usage(void); #endif /* AMD_BLOCK_MEMMAP_H */