1 /* This testcase is part of GDB, the GNU debugger.
3 Copyright 2023-2024 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* Exercise AArch64's Scalable Vector/Matrix Extension core file generation
19 for GDB. This includes reading Linux Kernel-generated core files and
20 writing GDB core files via the gcore command and making sure the contents
25 #include <sys/prctl.h>
31 #define HWCAP_SVE (1 << 22)
35 #define HWCAP2_SME (1 << 23)
39 #define HWCAP2_SME2 (1UL << 37)
40 #define HWCAP2_SME2P1 (1UL << 38)
44 #define PR_SVE_SET_VL 50
45 #define PR_SVE_GET_VL 51
46 #define PR_SVE_VL_LEN_MASK 0xffff
50 #define PR_SME_SET_VL 63
51 #define PR_SME_GET_VL 64
52 #define PR_SME_VL_LEN_MASK 0xffff
59 __asm
__volatile (".word 0xD503457F");
66 __asm
__volatile (".word 0xD503447F");
73 __asm
__volatile (".word 0xD503437F");
80 __asm
__volatile (".word 0xD503427F");
84 initialize_fpsimd_state ()
88 for (int i
= 0; i
< 16; i
++)
91 __asm
__volatile ("mov x0, %0\n\t" \
94 __asm
__volatile ("ldr q0, [x0]");
95 __asm
__volatile ("ldr q1, [x0]");
96 __asm
__volatile ("ldr q2, [x0]");
97 __asm
__volatile ("ldr q3, [x0]");
98 __asm
__volatile ("ldr q4, [x0]");
99 __asm
__volatile ("ldr q5, [x0]");
100 __asm
__volatile ("ldr q6, [x0]");
101 __asm
__volatile ("ldr q7, [x0]");
102 __asm
__volatile ("ldr q8, [x0]");
103 __asm
__volatile ("ldr q9, [x0]");
104 __asm
__volatile ("ldr q10, [x0]");
105 __asm
__volatile ("ldr q11, [x0]");
106 __asm
__volatile ("ldr q12, [x0]");
107 __asm
__volatile ("ldr q13, [x0]");
108 __asm
__volatile ("ldr q14, [x0]");
109 __asm
__volatile ("ldr q15, [x0]");
110 __asm
__volatile ("ldr q16, [x0]");
111 __asm
__volatile ("ldr q17, [x0]");
112 __asm
__volatile ("ldr q18, [x0]");
113 __asm
__volatile ("ldr q19, [x0]");
114 __asm
__volatile ("ldr q20, [x0]");
115 __asm
__volatile ("ldr q21, [x0]");
116 __asm
__volatile ("ldr q22, [x0]");
117 __asm
__volatile ("ldr q23, [x0]");
118 __asm
__volatile ("ldr q24, [x0]");
119 __asm
__volatile ("ldr q25, [x0]");
120 __asm
__volatile ("ldr q26, [x0]");
121 __asm
__volatile ("ldr q27, [x0]");
122 __asm
__volatile ("ldr q28, [x0]");
123 __asm
__volatile ("ldr q29, [x0]");
124 __asm
__volatile ("ldr q30, [x0]");
125 __asm
__volatile ("ldr q31, [x0]");
129 initialize_za_state ()
132 __asm
__volatile (".word 0xC00800FF");
136 for (int i
= 0; i
< 256; i
++)
139 __asm
__volatile ("mov x0, %0\n\t" \
142 /* Initialize loop boundaries. */
143 __asm
__volatile ("mov w12, 0");
144 __asm
__volatile ("mov w17, 256");
146 /* loop: ldr za[w12, 0], [x0] */
147 __asm
__volatile ("loop: .word 0xe1000000");
148 __asm
__volatile ("add w12, w12, 1");
149 __asm
__volatile ("cmp w12, w17");
150 __asm
__volatile ("bne loop");
154 initialize_zt_state ()
156 unsigned long hwcap2
= getauxval (AT_HWCAP2
);
158 if (!(hwcap2
& HWCAP2_SME2
) && !(hwcap2
& HWCAP2_SME2P1
))
163 for (int i
= 0; i
< 64; i
++)
166 __asm
__volatile ("mov x0, %0\n\t" \
169 /* Initialize ZT0. */
171 __asm
__volatile (".word 0xe11f8000");
177 __asm
__volatile ("mov x0, #0xffffffffffffffff");
179 /* Write x0 to tpidr2. */
180 __asm
__volatile (".word 0xd51bd0a0");
184 initialize_sve_state ()
186 __asm
__volatile ("dup z0.b, -1");
187 __asm
__volatile ("dup z1.b, -1");
188 __asm
__volatile ("dup z2.b, -1");
189 __asm
__volatile ("dup z3.b, -1");
190 __asm
__volatile ("dup z4.b, -1");
191 __asm
__volatile ("dup z5.b, -1");
192 __asm
__volatile ("dup z6.b, -1");
193 __asm
__volatile ("dup z7.b, -1");
194 __asm
__volatile ("dup z8.b, -1");
195 __asm
__volatile ("dup z9.b, -1");
196 __asm
__volatile ("dup z10.b, -1");
197 __asm
__volatile ("dup z11.b, -1");
198 __asm
__volatile ("dup z12.b, -1");
199 __asm
__volatile ("dup z13.b, -1");
200 __asm
__volatile ("dup z14.b, -1");
201 __asm
__volatile ("dup z15.b, -1");
202 __asm
__volatile ("dup z16.b, -1");
203 __asm
__volatile ("dup z17.b, -1");
204 __asm
__volatile ("dup z18.b, -1");
205 __asm
__volatile ("dup z19.b, -1");
206 __asm
__volatile ("dup z20.b, -1");
207 __asm
__volatile ("dup z21.b, -1");
208 __asm
__volatile ("dup z22.b, -1");
209 __asm
__volatile ("dup z23.b, -1");
210 __asm
__volatile ("dup z24.b, -1");
211 __asm
__volatile ("dup z25.b, -1");
212 __asm
__volatile ("dup z26.b, -1");
213 __asm
__volatile ("dup z27.b, -1");
214 __asm
__volatile ("dup z28.b, -1");
215 __asm
__volatile ("dup z29.b, -1");
216 __asm
__volatile ("dup z30.b, -1");
217 __asm
__volatile ("dup z31.b, -1");
218 __asm
__volatile ("ptrue p0.b");
219 __asm
__volatile ("ptrue p1.b");
220 __asm
__volatile ("ptrue p2.b");
221 __asm
__volatile ("ptrue p3.b");
222 __asm
__volatile ("ptrue p4.b");
223 __asm
__volatile ("ptrue p5.b");
224 __asm
__volatile ("ptrue p6.b");
225 __asm
__volatile ("ptrue p7.b");
226 __asm
__volatile ("ptrue p8.b");
227 __asm
__volatile ("ptrue p9.b");
228 __asm
__volatile ("ptrue p10.b");
229 __asm
__volatile ("ptrue p11.b");
230 __asm
__volatile ("ptrue p12.b");
231 __asm
__volatile ("ptrue p13.b");
232 __asm
__volatile ("ptrue p14.b");
233 __asm
__volatile ("ptrue p15.b");
234 __asm
__volatile ("setffr");
237 static int get_vl_size ()
239 int res
= prctl (PR_SVE_GET_VL
, 0, 0, 0, 0);
242 printf ("FAILED to PR_SVE_GET_VL (%d)", res
);
245 return (res
& PR_SVE_VL_LEN_MASK
);
248 static int get_svl_size ()
250 int res
= prctl (PR_SME_GET_VL
, 0, 0, 0, 0);
253 printf ("FAILED to PR_SME_GET_VL (%d)\n", res
);
256 return (res
& PR_SVE_VL_LEN_MASK
);
259 static int set_vl_size (int new_vl
)
261 int res
= prctl (PR_SVE_SET_VL
, new_vl
, 0, 0, 0, 0);
264 printf ("FAILED to PR_SVE_SET_VL (%d)\n", res
);
268 res
= get_vl_size ();
271 printf ("Unexpected VL value (%d)\n", res
);
278 static int set_svl_size (int new_svl
)
280 int res
= prctl (PR_SME_SET_VL
, new_svl
, 0, 0, 0, 0);
283 printf ("FAILED to PR_SME_SET_VL (%d)\n", res
);
287 res
= get_svl_size ();
290 printf ("Unexpected SVL value (%d)\n", res
);
297 /* Enable register states based on STATE.
303 4 - ZA and SSVE (+ SME2 ZT0). */
305 void enable_states (int state
)
309 initialize_fpsimd_state ();
313 initialize_sve_state ();
318 initialize_sve_state ();
323 initialize_za_state ();
324 initialize_zt_state ();
330 initialize_sve_state ();
331 initialize_za_state ();
332 initialize_zt_state ();
339 test_id_to_state (int id
)
345 test_id_to_vl (int id
)
347 return 16 << ((id
/ 5) % 5);
351 test_id_to_svl (int id
)
353 return 16 << (id
% 5);
362 main (int argc
, char **argv
)
365 printf ("Incorrect number of arguments passed to test.\n");
367 if (getauxval (AT_HWCAP
) & HWCAP_SVE
&& getauxval (AT_HWCAP2
) & HWCAP2_SME
)
371 /* If we have a test id passed as argument, read it now. */
373 test_id
= strtol (argv
[1], NULL
, 0);
375 dummy (); /* stop to initialize test_id */
377 int state
= test_id_to_state (test_id
);
378 int vl
= test_id_to_vl (test_id
);
379 int svl
= test_id_to_svl (test_id
);
381 if (set_vl_size (vl
) == -1 || set_svl_size (svl
) == -1)
384 enable_states (state
);
386 /* Also set the TPIDR2 register so we can test dumping its contents
388 initialize_tpidr2 ();
391 *p
= 0xff; /* crash point */
395 printf ("SKIP: no HWCAP_SVE or HWCAP2_SME on this system\n");