mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Drop support of obsolete dump and dump-tool versions (single-volume DASD, FBA and Tape) in order to simplify zgetdump logic: - CCW dumpers written in assembler instructions as well as stage2 dumpers of size less than 0x3000 (STAGE2_DUMPER_SIZE_V1 or STAGE2_DUMPER_SIZE_V2) haven't been used for years. Remove its traces completely as a cleanup. Keep the last version (version 5) of non-extended DASD dumper as well as newer extended DASD dumpers. - Rename STAGE2_DUMPER_SIZE_V3 and STAGE2_DUMPER_SIZE_ZLIB constants. - Drop support of non-extended s390 dumps of version < 5. Dump files of s390 format version 5 can be still produced by zgetdump (dfo_s390). - Drop excessive dump version checking in df_s390_cpu_info_add() and df_s390_hdr_add() considering that obsolete s390 dumps of version lower than 5 no longer supported. - Use cpu_cnt field in s390 dump header instead of the s390 dump version to indicate no cpu info available (DFI_CPU_CONTENT_NONE) for dfo_s390. - Make df_s390_dumper_read() return error code upon unknown dumper version/magic detection. Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com> Reviewed-by: Alexander Egorenkov <egorenar@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
58 lines
1.7 KiB
C
58 lines
1.7 KiB
C
/*
|
|
* zipl stage2/stage3 layout definitions
|
|
*
|
|
* Copyright IBM Corp. 2020
|
|
*
|
|
* s390-tools is free software; you can redistribute it and/or modify
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
*
|
|
*/
|
|
|
|
#ifndef LOADERS_LAYOUT_H
|
|
#define LOADERS_LAYOUT_H
|
|
|
|
#include "lib/zt_common.h"
|
|
#include "linux_layout.h"
|
|
|
|
#define STAGE0_LOAD_ADDRESS _AC(0x0, UL)
|
|
|
|
#define STAGE1_LOAD_ADDRESS _AC(0x18, UL)
|
|
#define STAGE1B_LOAD_ADDRESS _AC(0xe000, UL)
|
|
|
|
#define STAGE2_DESC _AC(0x78, UL)
|
|
#define STAGE2_ENTRY _AC(0x2018, UL)
|
|
#define ECKD2DUMP_MV_TAIL_ADDRESS _AC(0x6000, UL)
|
|
#define STAGE2_HEAP_ADDRESS _AC(0x6000, UL)
|
|
#define ECKD2DUMP_HEAP_ADDRESS _AC(0xb000, UL)
|
|
#define STAGE2_HEAP_SIZE _AC(0x3000, UL)
|
|
#define STAGE2_STACK_ADDRESS _AC(0xe400, UL)
|
|
#define STAGE2_STACK_SIZE _AC(0x1c00, UL)
|
|
#define ECKD2DUMP_STACK_ADDRESS _AC(0xe000, UL)
|
|
#define ECKD2DUMP_STACK_SIZE _AC(0x2000, UL)
|
|
#define STAGE2_MAX_SIZE _AC(0x3000, UL)
|
|
|
|
#define STAGE2_DUMPER_SIZE_SV _AC(0x3000, UL)
|
|
#define STAGE2_DUMPER_SIZE_MV _AC(0x4000, UL)
|
|
#define STAGE2_DUMPER_SIZE_SV_ZLIB _AC(0x8000, UL)
|
|
|
|
#define STAGE3_ENTRY _AC(0xa000, UL)
|
|
|
|
#define STAGE2_LOAD_ADDRESS _AC(0x2000, UL)
|
|
#define STAGE3_LOAD_ADDRESS STAGE3_ENTRY
|
|
#define IMAGE_LOAD_ADDRESS IMAGE_ENTRY
|
|
|
|
#define STAGE3_MAXIMUM_SIZE _AC(0x3000, UL)
|
|
#define STAGE3_HEAP_SIZE _AC(0x4000, UL)
|
|
#define STAGE3_HEAP_ADDRESS _AC(0x2000, UL)
|
|
#define STAGE3_STACK_SIZE _AC(0x1000, UL)
|
|
#define STAGE3_STACK_ADDRESS _AC(0xF000, UL)
|
|
#define STAGE3_PARAMS_ADDRESS _AC(0x9000, UL)
|
|
#define STAGE3_PARAMS_MAXIMUM_SIZE _AC(0x1000, UL)
|
|
|
|
#define COMMAND_LINE_EXTRA _AC(0xE000, UL)
|
|
#define COMMAND_LINE_EXTRA_SIZE _AC(0x0400, UL)
|
|
|
|
#ifndef __ASSEMBLER__
|
|
#endif /* __ASSEMBLER__ */
|
|
#endif /* LOADERS_LAYOUT_H */
|