blob: 606324e56e4ec7f63bd3b2332311569801e73a8b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Heiko Carstensc30f6822015-02-02 07:08:44 +01002/*
3 * Simple program to generate defines out of facility lists that use the bit
4 * numbering scheme from the Princples of Operations: most significant bit
5 * has bit number 0.
6 *
Christian Borntraegera3da7b42018-03-08 16:08:49 +00007 * Copyright IBM Corp. 2015, 2018
Heiko Carstensc30f6822015-02-02 07:08:44 +01008 *
9 */
10
Heiko Carstensc30f6822015-02-02 07:08:44 +010011#include <strings.h>
12#include <string.h>
13#include <stdlib.h>
14#include <stdio.h>
Masahiro Yamadad1f7e8f2016-11-06 12:45:28 +090015
16struct facility_def {
17 char *name;
18 int *bits;
19};
20
21static struct facility_def facility_defs[] = {
22 {
23 /*
24 * FACILITIES_ALS contains the list of facilities that are
25 * required to run a kernel that is compiled e.g. with
26 * -march=<machine>.
27 */
28 .name = "FACILITIES_ALS",
29 .bits = (int[]){
30#ifdef CONFIG_HAVE_MARCH_Z900_FEATURES
31 0, /* N3 instructions */
32 1, /* z/Arch mode installed */
33#endif
34#ifdef CONFIG_HAVE_MARCH_Z990_FEATURES
35 18, /* long displacement facility */
36#endif
37#ifdef CONFIG_HAVE_MARCH_Z9_109_FEATURES
Masahiro Yamadad1f7e8f2016-11-06 12:45:28 +090038 21, /* extended-immediate facility */
39 25, /* store clock fast */
40#endif
41#ifdef CONFIG_HAVE_MARCH_Z10_FEATURES
42 27, /* mvcos */
43 32, /* compare and swap and store */
44 33, /* compare and swap and store 2 */
Heiko Carstensba794412017-08-18 09:02:01 +020045 34, /* general instructions extension */
Masahiro Yamadad1f7e8f2016-11-06 12:45:28 +090046 35, /* execute extensions */
47#endif
48#ifdef CONFIG_HAVE_MARCH_Z196_FEATURES
49 45, /* fast-BCR, etc. */
50#endif
51#ifdef CONFIG_HAVE_MARCH_ZEC12_FEATURES
52 49, /* misc-instruction-extensions */
53 52, /* interlocked facility 2 */
54#endif
55#ifdef CONFIG_HAVE_MARCH_Z13_FEATURES
56 53, /* load-and-zero-rightmost-byte, etc. */
57#endif
Martin Schwidefsky6997c322017-04-12 14:17:25 +020058#ifdef CONFIG_HAVE_MARCH_Z14_FEATURES
59 58, /* miscellaneous-instruction-extension 2 */
60#endif
Martin Schwidefskya0e22512019-02-06 08:22:11 +010061#ifdef CONFIG_HAVE_MARCH_Z15_FEATURES
62 61, /* miscellaneous-instruction-extension 3 */
63#endif
Masahiro Yamadad1f7e8f2016-11-06 12:45:28 +090064 -1 /* END */
65 }
66 },
67 {
Christian Borntraegerc3b9e3e2018-02-09 16:26:29 +000068 /*
69 * FACILITIES_KVM contains the list of facilities that are part
70 * of the default facility mask and list that are passed to the
71 * initial CPU model. If no CPU model is used, this, together
72 * with the non-hypervisor managed bits, is the maximum list of
73 * guest facilities supported by KVM.
74 */
Masahiro Yamadad1f7e8f2016-11-06 12:45:28 +090075 .name = "FACILITIES_KVM",
76 .bits = (int[]){
77 0, /* N3 instructions */
78 1, /* z/Arch mode installed */
79 2, /* z/Arch mode active */
80 3, /* DAT-enhancement */
81 4, /* idte segment table */
82 5, /* idte region table */
83 6, /* ASN-and-LX reuse */
84 7, /* stfle */
85 8, /* enhanced-DAT 1 */
86 9, /* sense-running-status */
87 10, /* conditional sske */
88 13, /* ipte-range */
89 14, /* nonquiescing key-setting */
90 73, /* transactional execution */
91 75, /* access-exception-fetch/store indication */
92 76, /* msa extension 3 */
93 77, /* msa extension 4 */
94 78, /* enhanced-DAT 2 */
Janosch Frankcd1836f2016-08-04 09:57:36 +020095 130, /* instruction-execution-protection */
Christian Borntraegera679c542016-12-15 15:58:14 +010096 131, /* enhanced-SOP 2 and side-effect */
Collin L. Walling8fa16962016-07-26 15:29:44 -040097 139, /* multiple epoch facility */
Jason J. Hernee000b8e2017-03-20 09:57:42 -040098 146, /* msa extension 8 */
Christian Borntraeger173aec22018-12-28 10:59:06 +010099 150, /* enhanced sort */
Christian Borntraeger4f45b902018-12-28 10:46:04 +0100100 151, /* deflate conversion */
Christian Borntraeger13209ad2018-12-28 09:33:35 +0100101 155, /* msa extension 9 */
Masahiro Yamadad1f7e8f2016-11-06 12:45:28 +0900102 -1 /* END */
103 }
104 },
Christian Borntraegerc3b9e3e2018-02-09 16:26:29 +0000105 {
106 /*
107 * FACILITIES_KVM_CPUMODEL contains the list of facilities
108 * that can be enabled by CPU model code if the host supports
109 * it. These facilities are not passed to the guest without
110 * CPU model support.
111 */
112
113 .name = "FACILITIES_KVM_CPUMODEL",
114 .bits = (int[]){
Tony Krowiak112c24d2018-09-25 19:16:40 -0400115 12, /* AP Query Configuration Information */
116 15, /* AP Facilities Test */
Christian Borntraegera3da7b42018-03-08 16:08:49 +0000117 156, /* etoken facility */
Christian Borntraegera3efa842021-03-09 16:24:19 +0100118 165, /* nnpa facility */
119 193, /* bear enhancement facility */
120 194, /* rdp enhancement facility */
121 196, /* processor activity instrumentation facility */
Christian Borntraegerc3b9e3e2018-02-09 16:26:29 +0000122 -1 /* END */
123 }
124 },
Masahiro Yamadad1f7e8f2016-11-06 12:45:28 +0900125};
Heiko Carstensc30f6822015-02-02 07:08:44 +0100126
127static void print_facility_list(struct facility_def *def)
128{
129 unsigned int high, bit, dword, i;
130 unsigned long long *array;
131
132 array = calloc(1, 8);
133 if (!array)
134 exit(EXIT_FAILURE);
135 high = 0;
136 for (i = 0; def->bits[i] != -1; i++) {
137 bit = 63 - (def->bits[i] & 63);
138 dword = def->bits[i] / 64;
139 if (dword > high) {
140 array = realloc(array, (dword + 1) * 8);
141 if (!array)
142 exit(EXIT_FAILURE);
143 memset(array + high + 1, 0, (dword - high) * 8);
144 high = dword;
145 }
146 array[dword] |= 1ULL << bit;
147 }
148 printf("#define %s ", def->name);
149 for (i = 0; i <= high; i++)
150 printf("_AC(0x%016llx,UL)%c", array[i], i < high ? ',' : '\n');
Heiko Carstensc30f6822015-02-02 07:08:44 +0100151 free(array);
152}
153
154static void print_facility_lists(void)
155{
156 unsigned int i;
157
158 for (i = 0; i < sizeof(facility_defs) / sizeof(facility_defs[0]); i++)
159 print_facility_list(&facility_defs[i]);
160}
161
162int main(int argc, char **argv)
163{
Hendrik Brueckner7fbf8312018-01-11 12:13:18 +0100164 printf("#ifndef __ASM_S390_FACILITY_DEFS__\n");
165 printf("#define __ASM_S390_FACILITY_DEFS__\n");
Heiko Carstensc30f6822015-02-02 07:08:44 +0100166 printf("/*\n");
167 printf(" * DO NOT MODIFY.\n");
168 printf(" *\n");
169 printf(" * This file was generated by %s\n", __FILE__);
170 printf(" */\n\n");
171 printf("#include <linux/const.h>\n\n");
172 print_facility_lists();
173 printf("\n#endif\n");
174 return 0;
175}