handoff.h 467 B

123456789101112131415161718192021
  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. #ifndef __asm_handoff_h
  9. #define __asm_handoff_h
  10. /**
  11. * struct arch_spl_handoff - architecture-specific handoff info
  12. *
  13. * @usable_ram_top: Value returned by board_get_usable_ram_top() in SPL
  14. */
  15. struct arch_spl_handoff {
  16. ulong usable_ram_top;
  17. };
  18. #endif