purgatory.h 427 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright IBM Corp. 2018
  4. *
  5. * Author(s): Philipp Rudo <prudo@linux.vnet.ibm.com>
  6. */
  7. #ifndef _S390_PURGATORY_H_
  8. #define _S390_PURGATORY_H_
  9. #ifndef __ASSEMBLY__
  10. #include <linux/purgatory.h>
  11. int verify_sha256_digest(void);
  12. extern u64 kernel_entry;
  13. extern u64 kernel_type;
  14. extern u64 crash_start;
  15. extern u64 crash_size;
  16. #endif /* __ASSEMBLY__ */
  17. #endif /* _S390_PURGATORY_H_ */