Files
s390-tools/include/lib/util_arch.h
Thomas Richter b3db52fd16 libutil: Add machine type definition for machines 9175 and 9176
Add machine type definition for machines 9175 and 9176.

Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
Reviewed-by: Sumanth Korikkar <sumanthk@linux.ibm.com>
Suggested-by: Christian Borntraeger <borntraeger@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
2025-05-05 17:15:01 +02:00

44 lines
1.2 KiB
C

/**
* @defgroup util_arch_h util_arch: General architecture helpers
* @{
* @brief General architecture helpers
*
* Copyright IBM Corp. 2021
*
* 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 LIB_UTIL_ARCH_H
#define LIB_UTIL_ARCH_H
enum util_arch_machine_type {
UTIL_ARCH_MACHINE_TYPE_UNKNOWN = 0,
UTIL_ARCH_MACHINE_TYPE_Z10_EC = 2097,
UTIL_ARCH_MACHINE_TYPE_Z10_BC = 2098,
UTIL_ARCH_MACHINE_TYPE_ZE_196 = 2817,
UTIL_ARCH_MACHINE_TYPE_ZE_114 = 2818,
UTIL_ARCH_MACHINE_TYPE_ZE_EC12 = 2827,
UTIL_ARCH_MACHINE_TYPE_ZE_BC12 = 2828,
UTIL_ARCH_MACHINE_TYPE_Z13 = 2964,
UTIL_ARCH_MACHINE_TYPE_Z13_S = 2965,
UTIL_ARCH_MACHINE_TYPE_Z14 = 3906,
UTIL_ARCH_MACHINE_TYPE_Z14_ZR1 = 3907,
UTIL_ARCH_MACHINE_TYPE_Z15 = 8561,
UTIL_ARCH_MACHINE_TYPE_Z15_T02 = 8562,
UTIL_ARCH_MACHINE_TYPE_Z16 = 3931,
UTIL_ARCH_MACHINE_TYPE_Z16_A02 = 3932,
UTIL_ARCH_MACHINE_TYPE_Z17 = 9175,
UTIL_ARCH_MACHINE_TYPE_Z17_2 = 9176,
};
int util_arch_machine_type(void);
const char *util_arch_machine_type_str(void);
const char *util_arch_machine_type_to_str(int type);
unsigned long util_arch_hsa_maxsize(void);
#endif /** LIB_UTIL_ARCH_H @} */