mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
- Move zipl/boot/error.h to include/boot - Adjust include statements in zipb/boot and genprotimg/boot - Remove error.h from tunedasd/src/tunedasd.c as not needed - Fix tunedasd/src/Makefile Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com> Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
/*
|
|
* zipl - zSeries Initial Program Loader tool
|
|
*
|
|
* Stand-alone kdump support (stage 2)
|
|
*
|
|
* Copyright IBM Corp. 2013, 2023
|
|
*
|
|
* s390-tools is free software; you can redistribute it and/or modify
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
*/
|
|
|
|
#include "kdump.h"
|
|
#include "libc.h"
|
|
#include "menu.h"
|
|
#include "stage2.h"
|
|
#include "boot/error.h"
|
|
#include "boot/os_info.h"
|
|
|
|
/*
|
|
* Copy crashkernel memory from [0, crash size] to
|
|
* [crash base, crash base + crash size] if config_nr specifies a
|
|
* kdump boot menu entry.
|
|
*
|
|
* Parameter:
|
|
* Config number (starts with 1)
|
|
*/
|
|
void kdump_stage2(unsigned long config_nr)
|
|
{
|
|
const struct os_info *os_info = (struct os_info *)S390_lowcore.os_info;
|
|
unsigned long crash_size;
|
|
void *crash_base;
|
|
|
|
if (!(__stage2_params.config_kdump & (0x1 << config_nr)))
|
|
return;
|
|
kdump_os_info_check(os_info);
|
|
|
|
/* Copy crashkernel memory */
|
|
crash_base = (void *) os_info->crashkernel_addr;
|
|
crash_size = os_info->crashkernel_size;
|
|
memcpy(crash_base, NULL, crash_size);
|
|
/*
|
|
* Relocate OS info pointer if necessary (needed for stage 3)
|
|
* If OS info is smaller than crash size then add crash base
|
|
*/
|
|
if (__pa(os_info) >= crash_size)
|
|
return;
|
|
S390_lowcore.os_info = __pa(os_info) + __pa(crash_base);
|
|
}
|