crashdump-ppc64.h 624 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. #ifndef _ASM_POWERPC_CRASHDUMP_PPC64_H
  3. #define _ASM_POWERPC_CRASHDUMP_PPC64_H
  4. /*
  5. * Backup region - first 64KB of System RAM
  6. *
  7. * If ever the below macros are to be changed, please be judicious.
  8. * The implicit assumptions are:
  9. * - start, end & size are less than UINT32_MAX.
  10. * - start & size are at least 8 byte aligned.
  11. *
  12. * For implementation details: arch/powerpc/purgatory/trampoline_64.S
  13. */
  14. #define BACKUP_SRC_START 0
  15. #define BACKUP_SRC_END 0xffff
  16. #define BACKUP_SRC_SIZE (BACKUP_SRC_END - BACKUP_SRC_START + 1)
  17. #endif /* __ASM_POWERPC_CRASHDUMP_PPC64_H */