]>
Commit | Line | Data |
---|---|---|
5ba3f43e | 1 | /* |
f427ee49 | 2 | * Copyright (c) 2007-2020 Apple Inc. All rights reserved. |
5ba3f43e A |
3 | * |
4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * This file contains Original Code and/or Modifications of Original Code | |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
14 | * | |
15 | * Please obtain a copy of the License at | |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
25 | * | |
26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ | |
27 | */ | |
28 | ||
29 | #include <debug.h> | |
30 | ||
31 | #include <types.h> | |
32 | ||
33 | #include <mach/mach_types.h> | |
34 | #include <mach/thread_status.h> | |
35 | #include <mach/vm_types.h> | |
36 | ||
37 | #include <kern/kern_types.h> | |
38 | #include <kern/task.h> | |
39 | #include <kern/thread.h> | |
40 | #include <kern/misc_protos.h> | |
41 | #include <kern/mach_param.h> | |
42 | #include <kern/spl.h> | |
43 | #include <kern/machine.h> | |
5ba3f43e A |
44 | #include <kern/kpc.h> |
45 | ||
46 | #if MONOTONIC | |
47 | #include <kern/monotonic.h> | |
48 | #endif /* MONOTONIC */ | |
49 | ||
50 | #include <machine/atomic.h> | |
51 | #include <arm64/proc_reg.h> | |
52 | #include <arm64/machine_machdep.h> | |
53 | #include <arm/cpu_data_internal.h> | |
54 | #include <arm/machdep_call.h> | |
55 | #include <arm/misc_protos.h> | |
56 | #include <arm/cpuid.h> | |
57 | ||
58 | #include <vm/vm_map.h> | |
59 | #include <vm/vm_protos.h> | |
60 | ||
61 | #include <sys/kdebug.h> | |
62 | ||
5ba3f43e A |
63 | |
64 | extern int debug_task; | |
f427ee49 | 65 | extern bool need_wa_rdar_55577508; |
5ba3f43e | 66 | |
f427ee49 A |
67 | /* zone for debug_state area */ |
68 | ZONE_DECLARE(ads_zone, "arm debug state", sizeof(arm_debug_state_t), ZC_NONE); | |
69 | ZONE_DECLARE(user_ss_zone, "user save state", sizeof(arm_context_t), ZC_NONE); | |
5ba3f43e A |
70 | |
71 | /* | |
cb323159 | 72 | * Routine: consider_machine_collect |
5ba3f43e A |
73 | * |
74 | */ | |
75 | void | |
76 | consider_machine_collect(void) | |
77 | { | |
78 | pmap_gc(); | |
79 | } | |
80 | ||
81 | /* | |
cb323159 | 82 | * Routine: consider_machine_adjust |
5ba3f43e A |
83 | * |
84 | */ | |
85 | void | |
86 | consider_machine_adjust(void) | |
87 | { | |
88 | } | |
89 | ||
cb323159 | 90 | |
f427ee49 A |
91 | |
92 | ||
93 | static inline void | |
94 | machine_thread_switch_cpu_data(thread_t old, thread_t new) | |
95 | { | |
96 | /* | |
97 | * We build with -fno-strict-aliasing, so the load through temporaries | |
98 | * is required so that this generates a single load / store pair. | |
99 | */ | |
100 | cpu_data_t *datap = old->machine.CpuDatap; | |
101 | vm_offset_t base = old->machine.pcpu_data_base; | |
102 | ||
103 | /* TODO: Should this be ordered? */ | |
104 | ||
105 | old->machine.CpuDatap = NULL; | |
106 | old->machine.pcpu_data_base = 0; | |
107 | ||
108 | new->machine.CpuDatap = datap; | |
109 | new->machine.pcpu_data_base = base; | |
110 | } | |
111 | ||
5ba3f43e | 112 | /* |
cb323159 | 113 | * Routine: machine_switch_context |
5ba3f43e A |
114 | * |
115 | */ | |
116 | thread_t | |
cb323159 | 117 | machine_switch_context(thread_t old, |
f427ee49 A |
118 | thread_continue_t continuation, |
119 | thread_t new) | |
5ba3f43e A |
120 | { |
121 | thread_t retval; | |
cb323159 | 122 | pmap_t new_pmap; |
f427ee49 A |
123 | |
124 | #if __ARM_PAN_AVAILABLE__ | |
125 | if (__improbable(__builtin_arm_rsr("pan") == 0)) { | |
126 | panic("context switch with PAN disabled"); | |
127 | } | |
128 | #endif | |
5ba3f43e | 129 | |
cb323159 A |
130 | #define machine_switch_context_kprintf(x...) \ |
131 | /* kprintf("machine_switch_context: " x) */ | |
5ba3f43e | 132 | |
f427ee49 | 133 | if (old == new) { |
5ba3f43e | 134 | panic("machine_switch_context"); |
f427ee49 | 135 | } |
5ba3f43e A |
136 | |
137 | kpc_off_cpu(old); | |
138 | ||
139 | ||
cb323159 | 140 | |
f427ee49 | 141 | |
5ba3f43e | 142 | new_pmap = new->map->pmap; |
f427ee49 | 143 | if (old->map->pmap != new_pmap) { |
5ba3f43e | 144 | pmap_switch(new_pmap); |
f427ee49 A |
145 | } else { |
146 | /* | |
147 | * If the thread is preempted while performing cache or TLB maintenance, | |
148 | * it may be migrated to a different CPU between the completion of the relevant | |
149 | * maintenance instruction and the synchronizing DSB. ARM requires that the | |
150 | * synchronizing DSB must be issued *on the PE that issued the maintenance instruction* | |
151 | * in order to guarantee completion of the instruction and visibility of its effects. | |
152 | * Issue DSB here to enforce that guarantee. We only do this for the case in which | |
153 | * the pmap isn't changing, as we expect pmap_switch() to issue DSB when it updates | |
154 | * TTBR0. Note also that cache maintenance may be performed in userspace, so we | |
155 | * cannot further limit this operation e.g. by setting a per-thread flag to indicate | |
156 | * a pending kernel TLB or cache maintenance instruction. | |
157 | */ | |
158 | __builtin_arm_dsb(DSB_ISH); | |
159 | } | |
5ba3f43e | 160 | |
cb323159 | 161 | |
f427ee49 | 162 | machine_thread_switch_cpu_data(old, new); |
0a7de745 | 163 | |
5ba3f43e A |
164 | machine_switch_context_kprintf("old= %x contination = %x new = %x\n", old, continuation, new); |
165 | ||
166 | retval = Switch_context(old, continuation, new); | |
167 | assert(retval != NULL); | |
168 | ||
169 | return retval; | |
170 | } | |
171 | ||
cb323159 A |
172 | boolean_t |
173 | machine_thread_on_core(thread_t thread) | |
174 | { | |
f427ee49 | 175 | return thread->machine.CpuDatap != NULL; |
cb323159 A |
176 | } |
177 | ||
f427ee49 | 178 | |
5ba3f43e | 179 | /* |
cb323159 | 180 | * Routine: machine_thread_create |
5ba3f43e A |
181 | * |
182 | */ | |
183 | kern_return_t | |
cb323159 | 184 | machine_thread_create(thread_t thread, |
f427ee49 | 185 | task_t task) |
5ba3f43e A |
186 | { |
187 | arm_context_t *thread_user_ss = NULL; | |
188 | kern_return_t result = KERN_SUCCESS; | |
189 | ||
cb323159 A |
190 | #define machine_thread_create_kprintf(x...) \ |
191 | /* kprintf("machine_thread_create: " x) */ | |
5ba3f43e A |
192 | |
193 | machine_thread_create_kprintf("thread = %x\n", thread); | |
194 | ||
195 | if (current_thread() != thread) { | |
196 | thread->machine.CpuDatap = (cpu_data_t *)0; | |
f427ee49 A |
197 | // setting this offset will cause trying to use it to panic |
198 | thread->machine.pcpu_data_base = (vm_offset_t)VM_MIN_KERNEL_ADDRESS; | |
5ba3f43e A |
199 | } |
200 | thread->machine.preemption_count = 0; | |
201 | thread->machine.cthread_self = 0; | |
f427ee49 A |
202 | thread->machine.kpcb = NULL; |
203 | thread->machine.exception_trace_code = 0; | |
cb323159 A |
204 | #if defined(HAS_APPLE_PAC) |
205 | thread->machine.rop_pid = task->rop_pid; | |
f427ee49 | 206 | thread->machine.jop_pid = task->jop_pid; |
cb323159 A |
207 | thread->machine.disable_user_jop = task->disable_user_jop; |
208 | #endif | |
5ba3f43e A |
209 | |
210 | ||
f427ee49 | 211 | |
5ba3f43e A |
212 | if (task != kernel_task) { |
213 | /* If this isn't a kernel thread, we'll have userspace state. */ | |
214 | thread->machine.contextData = (arm_context_t *)zalloc(user_ss_zone); | |
215 | ||
216 | if (!thread->machine.contextData) { | |
cb323159 A |
217 | result = KERN_FAILURE; |
218 | goto done; | |
5ba3f43e A |
219 | } |
220 | ||
221 | thread->machine.upcb = &thread->machine.contextData->ss; | |
222 | thread->machine.uNeon = &thread->machine.contextData->ns; | |
223 | ||
d9a64523 | 224 | if (task_has_64Bit_data(task)) { |
5ba3f43e A |
225 | thread->machine.upcb->ash.flavor = ARM_SAVED_STATE64; |
226 | thread->machine.upcb->ash.count = ARM_SAVED_STATE64_COUNT; | |
227 | thread->machine.uNeon->nsh.flavor = ARM_NEON_SAVED_STATE64; | |
228 | thread->machine.uNeon->nsh.count = ARM_NEON_SAVED_STATE64_COUNT; | |
229 | } else { | |
230 | thread->machine.upcb->ash.flavor = ARM_SAVED_STATE32; | |
231 | thread->machine.upcb->ash.count = ARM_SAVED_STATE32_COUNT; | |
232 | thread->machine.uNeon->nsh.flavor = ARM_NEON_SAVED_STATE32; | |
233 | thread->machine.uNeon->nsh.count = ARM_NEON_SAVED_STATE32_COUNT; | |
234 | } | |
235 | } else { | |
236 | thread->machine.upcb = NULL; | |
237 | thread->machine.uNeon = NULL; | |
238 | thread->machine.contextData = NULL; | |
239 | } | |
240 | ||
5ba3f43e | 241 | |
f427ee49 | 242 | |
cb323159 | 243 | bzero(&thread->machine.perfctrl_state, sizeof(thread->machine.perfctrl_state)); |
5ba3f43e A |
244 | result = machine_thread_state_initialize(thread); |
245 | ||
cb323159 | 246 | done: |
5ba3f43e A |
247 | if (result != KERN_SUCCESS) { |
248 | thread_user_ss = thread->machine.contextData; | |
cb323159 A |
249 | |
250 | if (thread_user_ss) { | |
251 | thread->machine.upcb = NULL; | |
252 | thread->machine.uNeon = NULL; | |
253 | thread->machine.contextData = NULL; | |
254 | zfree(user_ss_zone, thread_user_ss); | |
255 | } | |
5ba3f43e A |
256 | } |
257 | ||
258 | return result; | |
259 | } | |
260 | ||
261 | /* | |
cb323159 | 262 | * Routine: machine_thread_destroy |
5ba3f43e A |
263 | * |
264 | */ | |
265 | void | |
cb323159 | 266 | machine_thread_destroy(thread_t thread) |
5ba3f43e A |
267 | { |
268 | arm_context_t *thread_user_ss; | |
269 | ||
270 | if (thread->machine.contextData) { | |
271 | /* Disassociate the user save state from the thread before we free it. */ | |
272 | thread_user_ss = thread->machine.contextData; | |
273 | thread->machine.upcb = NULL; | |
274 | thread->machine.uNeon = NULL; | |
275 | thread->machine.contextData = NULL; | |
cb323159 A |
276 | |
277 | ||
5ba3f43e A |
278 | zfree(user_ss_zone, thread_user_ss); |
279 | } | |
280 | ||
f427ee49 | 281 | if (thread->machine.DebugData != NULL) { |
5ba3f43e A |
282 | if (thread->machine.DebugData == getCpuDatap()->cpu_user_debug) { |
283 | arm_debug_set(NULL); | |
284 | } | |
285 | ||
286 | zfree(ads_zone, thread->machine.DebugData); | |
287 | } | |
288 | } | |
289 | ||
290 | ||
291 | /* | |
cb323159 | 292 | * Routine: machine_thread_init |
5ba3f43e A |
293 | * |
294 | */ | |
295 | void | |
296 | machine_thread_init(void) | |
297 | { | |
5ba3f43e A |
298 | } |
299 | ||
ea3f0419 A |
300 | /* |
301 | * Routine: machine_thread_template_init | |
302 | * | |
303 | */ | |
304 | void | |
305 | machine_thread_template_init(thread_t __unused thr_template) | |
306 | { | |
307 | /* Nothing to do on this platform. */ | |
308 | } | |
5ba3f43e A |
309 | |
310 | /* | |
cb323159 | 311 | * Routine: get_useraddr |
5ba3f43e A |
312 | * |
313 | */ | |
314 | user_addr_t | |
315 | get_useraddr() | |
316 | { | |
f427ee49 | 317 | return get_saved_state_pc(current_thread()->machine.upcb); |
5ba3f43e A |
318 | } |
319 | ||
320 | /* | |
cb323159 | 321 | * Routine: machine_stack_detach |
5ba3f43e A |
322 | * |
323 | */ | |
324 | vm_offset_t | |
cb323159 | 325 | machine_stack_detach(thread_t thread) |
5ba3f43e | 326 | { |
cb323159 | 327 | vm_offset_t stack; |
5ba3f43e A |
328 | |
329 | KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_SCHED, MACH_STACK_DETACH), | |
f427ee49 | 330 | (uintptr_t)thread_tid(thread), thread->priority, thread->sched_pri, 0, 0); |
5ba3f43e A |
331 | |
332 | stack = thread->kernel_stack; | |
333 | thread->kernel_stack = 0; | |
334 | thread->machine.kstackptr = 0; | |
335 | ||
f427ee49 | 336 | return stack; |
5ba3f43e A |
337 | } |
338 | ||
339 | ||
340 | /* | |
cb323159 | 341 | * Routine: machine_stack_attach |
5ba3f43e A |
342 | * |
343 | */ | |
344 | void | |
cb323159 | 345 | machine_stack_attach(thread_t thread, |
f427ee49 | 346 | vm_offset_t stack) |
5ba3f43e | 347 | { |
f427ee49 A |
348 | struct arm_kernel_context *context; |
349 | struct arm_kernel_saved_state *savestate; | |
350 | struct arm_kernel_neon_saved_state *neon_savestate; | |
cb323159 | 351 | uint32_t current_el; |
5ba3f43e | 352 | |
cb323159 A |
353 | #define machine_stack_attach_kprintf(x...) \ |
354 | /* kprintf("machine_stack_attach: " x) */ | |
5ba3f43e A |
355 | |
356 | KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_SCHED, MACH_STACK_ATTACH), | |
f427ee49 | 357 | (uintptr_t)thread_tid(thread), thread->priority, thread->sched_pri, 0, 0); |
5ba3f43e A |
358 | |
359 | thread->kernel_stack = stack; | |
360 | thread->machine.kstackptr = stack + kernel_stack_size - sizeof(struct thread_kernel_state); | |
361 | thread_initialize_kernel_state(thread); | |
362 | ||
363 | machine_stack_attach_kprintf("kstackptr: %lx\n", (vm_address_t)thread->machine.kstackptr); | |
364 | ||
cb323159 | 365 | current_el = (uint32_t) __builtin_arm_rsr64("CurrentEL"); |
5ba3f43e | 366 | context = &((thread_kernel_state_t) thread->machine.kstackptr)->machine; |
f427ee49 | 367 | savestate = &context->ss; |
5ba3f43e | 368 | savestate->fp = 0; |
5ba3f43e | 369 | savestate->sp = thread->machine.kstackptr; |
eb6b6ca3 A |
370 | |
371 | /* | |
372 | * The PC and CPSR of the kernel stack saved state are never used by context switch | |
373 | * code, and should never be used on exception return either. We're going to poison | |
374 | * these values to ensure they never get copied to the exception frame and used to | |
375 | * hijack control flow or privilege level on exception return. | |
376 | */ | |
377 | ||
378 | const uint32_t default_cpsr = PSR64_KERNEL_POISON; | |
cb323159 A |
379 | #if defined(HAS_APPLE_PAC) |
380 | /* Sign the initial kernel stack saved state */ | |
bca245ac | 381 | boolean_t intr = ml_set_interrupts_enabled(FALSE); |
cb323159 | 382 | asm volatile ( |
f427ee49 A |
383 | "mov x0, %[ss]" "\n" |
384 | ||
385 | "mov x1, xzr" "\n" | |
386 | "str x1, [x0, %[SS64_PC]]" "\n" | |
387 | ||
388 | "mov x2, %[default_cpsr_lo]" "\n" | |
389 | "movk x2, %[default_cpsr_hi], lsl #16" "\n" | |
390 | "str w2, [x0, %[SS64_CPSR]]" "\n" | |
391 | ||
392 | "adrp x3, _thread_continue@page" "\n" | |
393 | "add x3, x3, _thread_continue@pageoff" "\n" | |
394 | "str x3, [x0, %[SS64_LR]]" "\n" | |
395 | ||
396 | "mov x4, xzr" "\n" | |
397 | "mov x5, xzr" "\n" | |
398 | "stp x4, x5, [x0, %[SS64_X16]]" "\n" | |
399 | ||
400 | "mov x6, lr" "\n" | |
401 | "bl _ml_sign_kernel_thread_state" "\n" | |
402 | "mov lr, x6" "\n" | |
403 | : | |
404 | : [ss] "r"(&context->ss), | |
405 | [default_cpsr_lo] "M"(default_cpsr & 0xFFFF), | |
406 | [default_cpsr_hi] "M"(default_cpsr >> 16), | |
407 | [SS64_X16] "i"(offsetof(struct arm_kernel_saved_state, x[0])), | |
408 | [SS64_PC] "i"(offsetof(struct arm_kernel_saved_state, pc)), | |
409 | [SS64_CPSR] "i"(offsetof(struct arm_kernel_saved_state, cpsr)), | |
410 | [SS64_LR] "i"(offsetof(struct arm_kernel_saved_state, lr)) | |
411 | : "x0", "x1", "x2", "x3", "x4", "x5", "x6" | |
412 | ); | |
bca245ac | 413 | ml_set_interrupts_enabled(intr); |
cb323159 A |
414 | #else |
415 | savestate->lr = (uintptr_t)thread_continue; | |
eb6b6ca3 A |
416 | savestate->cpsr = default_cpsr; |
417 | savestate->pc = 0; | |
cb323159 | 418 | #endif /* defined(HAS_APPLE_PAC) */ |
f427ee49 A |
419 | neon_savestate = &context->ns; |
420 | neon_savestate->fpcr = FPCR_DEFAULT; | |
d9a64523 | 421 | machine_stack_attach_kprintf("thread = %p pc = %llx, sp = %llx\n", thread, savestate->lr, savestate->sp); |
5ba3f43e A |
422 | } |
423 | ||
424 | ||
425 | /* | |
cb323159 | 426 | * Routine: machine_stack_handoff |
5ba3f43e A |
427 | * |
428 | */ | |
429 | void | |
cb323159 | 430 | machine_stack_handoff(thread_t old, |
f427ee49 | 431 | thread_t new) |
5ba3f43e | 432 | { |
cb323159 A |
433 | vm_offset_t stack; |
434 | pmap_t new_pmap; | |
f427ee49 A |
435 | |
436 | #if __ARM_PAN_AVAILABLE__ | |
437 | if (__improbable(__builtin_arm_rsr("pan") == 0)) { | |
438 | panic("stack handoff with PAN disabled"); | |
439 | } | |
440 | #endif | |
5ba3f43e A |
441 | |
442 | kpc_off_cpu(old); | |
443 | ||
444 | stack = machine_stack_detach(old); | |
5ba3f43e A |
445 | new->kernel_stack = stack; |
446 | new->machine.kstackptr = stack + kernel_stack_size - sizeof(struct thread_kernel_state); | |
447 | if (stack == old->reserved_stack) { | |
448 | assert(new->reserved_stack); | |
449 | old->reserved_stack = new->reserved_stack; | |
450 | new->reserved_stack = stack; | |
451 | } | |
452 | ||
453 | ||
cb323159 | 454 | |
f427ee49 | 455 | |
5ba3f43e | 456 | new_pmap = new->map->pmap; |
f427ee49 | 457 | if (old->map->pmap != new_pmap) { |
5ba3f43e | 458 | pmap_switch(new_pmap); |
f427ee49 A |
459 | } else { |
460 | /* | |
461 | * If the thread is preempted while performing cache or TLB maintenance, | |
462 | * it may be migrated to a different CPU between the completion of the relevant | |
463 | * maintenance instruction and the synchronizing DSB. ARM requires that the | |
464 | * synchronizing DSB must be issued *on the PE that issued the maintenance instruction* | |
465 | * in order to guarantee completion of the instruction and visibility of its effects. | |
466 | * Issue DSB here to enforce that guarantee. We only do this for the case in which | |
467 | * the pmap isn't changing, as we expect pmap_switch() to issue DSB when it updates | |
468 | * TTBR0. Note also that cache maintenance may be performed in userspace, so we | |
469 | * cannot further limit this operation e.g. by setting a per-thread flag to indicate | |
470 | * a pending kernel TLB or cache maintenance instruction. | |
471 | */ | |
472 | __builtin_arm_dsb(DSB_ISH); | |
473 | } | |
5ba3f43e | 474 | |
cb323159 | 475 | |
f427ee49 | 476 | machine_thread_switch_cpu_data(old, new); |
0a7de745 | 477 | |
5ba3f43e A |
478 | machine_set_current_thread(new); |
479 | thread_initialize_kernel_state(new); | |
5ba3f43e A |
480 | } |
481 | ||
482 | ||
483 | /* | |
cb323159 | 484 | * Routine: call_continuation |
5ba3f43e A |
485 | * |
486 | */ | |
487 | void | |
cb323159 | 488 | call_continuation(thread_continue_t continuation, |
f427ee49 A |
489 | void *parameter, |
490 | wait_result_t wresult, | |
491 | boolean_t enable_interrupts) | |
5ba3f43e | 492 | { |
cb323159 A |
493 | #define call_continuation_kprintf(x...) \ |
494 | /* kprintf("call_continuation_kprintf:" x) */ | |
5ba3f43e A |
495 | |
496 | call_continuation_kprintf("thread = %p continuation = %p, stack = %p\n", current_thread(), continuation, current_thread()->machine.kstackptr); | |
d9a64523 | 497 | Call_continuation(continuation, parameter, wresult, enable_interrupts); |
a39ff7e2 A |
498 | } |
499 | ||
500 | #define SET_DBGBCRn(n, value, accum) \ | |
501 | __asm__ volatile( \ | |
f427ee49 A |
502 | "msr DBGBCR" #n "_EL1, %[val]\n" \ |
503 | "orr %[result], %[result], %[val]\n" \ | |
504 | : [result] "+r"(accum) : [val] "r"((value))) | |
a39ff7e2 A |
505 | |
506 | #define SET_DBGBVRn(n, value) \ | |
507 | __asm__ volatile("msr DBGBVR" #n "_EL1, %0" : : "r"(value)) | |
508 | ||
509 | #define SET_DBGWCRn(n, value, accum) \ | |
510 | __asm__ volatile( \ | |
f427ee49 A |
511 | "msr DBGWCR" #n "_EL1, %[val]\n" \ |
512 | "orr %[result], %[result], %[val]\n" \ | |
513 | : [result] "+r"(accum) : [val] "r"((value))) | |
a39ff7e2 A |
514 | |
515 | #define SET_DBGWVRn(n, value) \ | |
516 | __asm__ volatile("msr DBGWVR" #n "_EL1, %0" : : "r"(value)) | |
517 | ||
f427ee49 A |
518 | void |
519 | arm_debug_set32(arm_debug_state_t *debug_state) | |
5ba3f43e | 520 | { |
cb323159 A |
521 | struct cpu_data * cpu_data_ptr; |
522 | arm_debug_info_t * debug_info = arm_debug_info(); | |
f427ee49 | 523 | boolean_t intr; |
cb323159 | 524 | arm_debug_state_t off_state; |
cb323159 | 525 | uint64_t all_ctrls = 0; |
5ba3f43e A |
526 | |
527 | intr = ml_set_interrupts_enabled(FALSE); | |
528 | cpu_data_ptr = getCpuDatap(); | |
529 | ||
530 | // Set current user debug | |
531 | cpu_data_ptr->cpu_user_debug = debug_state; | |
532 | ||
533 | if (NULL == debug_state) { | |
534 | bzero(&off_state, sizeof(off_state)); | |
535 | debug_state = &off_state; | |
536 | } | |
537 | ||
538 | switch (debug_info->num_breakpoint_pairs) { | |
539 | case 16: | |
a39ff7e2 A |
540 | SET_DBGBVRn(15, (uint64_t)debug_state->uds.ds32.bvr[15]); |
541 | SET_DBGBCRn(15, (uint64_t)debug_state->uds.ds32.bcr[15], all_ctrls); | |
f427ee49 | 542 | OS_FALLTHROUGH; |
5ba3f43e | 543 | case 15: |
a39ff7e2 A |
544 | SET_DBGBVRn(14, (uint64_t)debug_state->uds.ds32.bvr[14]); |
545 | SET_DBGBCRn(14, (uint64_t)debug_state->uds.ds32.bcr[14], all_ctrls); | |
f427ee49 | 546 | OS_FALLTHROUGH; |
5ba3f43e | 547 | case 14: |
a39ff7e2 A |
548 | SET_DBGBVRn(13, (uint64_t)debug_state->uds.ds32.bvr[13]); |
549 | SET_DBGBCRn(13, (uint64_t)debug_state->uds.ds32.bcr[13], all_ctrls); | |
f427ee49 | 550 | OS_FALLTHROUGH; |
5ba3f43e | 551 | case 13: |
a39ff7e2 A |
552 | SET_DBGBVRn(12, (uint64_t)debug_state->uds.ds32.bvr[12]); |
553 | SET_DBGBCRn(12, (uint64_t)debug_state->uds.ds32.bcr[12], all_ctrls); | |
f427ee49 | 554 | OS_FALLTHROUGH; |
5ba3f43e | 555 | case 12: |
a39ff7e2 A |
556 | SET_DBGBVRn(11, (uint64_t)debug_state->uds.ds32.bvr[11]); |
557 | SET_DBGBCRn(11, (uint64_t)debug_state->uds.ds32.bcr[11], all_ctrls); | |
f427ee49 | 558 | OS_FALLTHROUGH; |
5ba3f43e | 559 | case 11: |
a39ff7e2 A |
560 | SET_DBGBVRn(10, (uint64_t)debug_state->uds.ds32.bvr[10]); |
561 | SET_DBGBCRn(10, (uint64_t)debug_state->uds.ds32.bcr[10], all_ctrls); | |
f427ee49 | 562 | OS_FALLTHROUGH; |
5ba3f43e | 563 | case 10: |
a39ff7e2 A |
564 | SET_DBGBVRn(9, (uint64_t)debug_state->uds.ds32.bvr[9]); |
565 | SET_DBGBCRn(9, (uint64_t)debug_state->uds.ds32.bcr[9], all_ctrls); | |
f427ee49 | 566 | OS_FALLTHROUGH; |
5ba3f43e | 567 | case 9: |
a39ff7e2 A |
568 | SET_DBGBVRn(8, (uint64_t)debug_state->uds.ds32.bvr[8]); |
569 | SET_DBGBCRn(8, (uint64_t)debug_state->uds.ds32.bcr[8], all_ctrls); | |
f427ee49 | 570 | OS_FALLTHROUGH; |
5ba3f43e | 571 | case 8: |
a39ff7e2 A |
572 | SET_DBGBVRn(7, (uint64_t)debug_state->uds.ds32.bvr[7]); |
573 | SET_DBGBCRn(7, (uint64_t)debug_state->uds.ds32.bcr[7], all_ctrls); | |
f427ee49 | 574 | OS_FALLTHROUGH; |
5ba3f43e | 575 | case 7: |
a39ff7e2 A |
576 | SET_DBGBVRn(6, (uint64_t)debug_state->uds.ds32.bvr[6]); |
577 | SET_DBGBCRn(6, (uint64_t)debug_state->uds.ds32.bcr[6], all_ctrls); | |
f427ee49 | 578 | OS_FALLTHROUGH; |
5ba3f43e | 579 | case 6: |
a39ff7e2 A |
580 | SET_DBGBVRn(5, (uint64_t)debug_state->uds.ds32.bvr[5]); |
581 | SET_DBGBCRn(5, (uint64_t)debug_state->uds.ds32.bcr[5], all_ctrls); | |
f427ee49 | 582 | OS_FALLTHROUGH; |
5ba3f43e | 583 | case 5: |
a39ff7e2 A |
584 | SET_DBGBVRn(4, (uint64_t)debug_state->uds.ds32.bvr[4]); |
585 | SET_DBGBCRn(4, (uint64_t)debug_state->uds.ds32.bcr[4], all_ctrls); | |
f427ee49 | 586 | OS_FALLTHROUGH; |
5ba3f43e | 587 | case 4: |
a39ff7e2 A |
588 | SET_DBGBVRn(3, (uint64_t)debug_state->uds.ds32.bvr[3]); |
589 | SET_DBGBCRn(3, (uint64_t)debug_state->uds.ds32.bcr[3], all_ctrls); | |
f427ee49 | 590 | OS_FALLTHROUGH; |
5ba3f43e | 591 | case 3: |
a39ff7e2 A |
592 | SET_DBGBVRn(2, (uint64_t)debug_state->uds.ds32.bvr[2]); |
593 | SET_DBGBCRn(2, (uint64_t)debug_state->uds.ds32.bcr[2], all_ctrls); | |
f427ee49 | 594 | OS_FALLTHROUGH; |
5ba3f43e | 595 | case 2: |
a39ff7e2 A |
596 | SET_DBGBVRn(1, (uint64_t)debug_state->uds.ds32.bvr[1]); |
597 | SET_DBGBCRn(1, (uint64_t)debug_state->uds.ds32.bcr[1], all_ctrls); | |
f427ee49 | 598 | OS_FALLTHROUGH; |
5ba3f43e | 599 | case 1: |
a39ff7e2 A |
600 | SET_DBGBVRn(0, (uint64_t)debug_state->uds.ds32.bvr[0]); |
601 | SET_DBGBCRn(0, (uint64_t)debug_state->uds.ds32.bcr[0], all_ctrls); | |
f427ee49 | 602 | OS_FALLTHROUGH; |
5ba3f43e A |
603 | default: |
604 | break; | |
605 | } | |
606 | ||
607 | switch (debug_info->num_watchpoint_pairs) { | |
608 | case 16: | |
a39ff7e2 A |
609 | SET_DBGWVRn(15, (uint64_t)debug_state->uds.ds32.wvr[15]); |
610 | SET_DBGWCRn(15, (uint64_t)debug_state->uds.ds32.wcr[15], all_ctrls); | |
f427ee49 | 611 | OS_FALLTHROUGH; |
5ba3f43e | 612 | case 15: |
a39ff7e2 A |
613 | SET_DBGWVRn(14, (uint64_t)debug_state->uds.ds32.wvr[14]); |
614 | SET_DBGWCRn(14, (uint64_t)debug_state->uds.ds32.wcr[14], all_ctrls); | |
f427ee49 | 615 | OS_FALLTHROUGH; |
5ba3f43e | 616 | case 14: |
a39ff7e2 A |
617 | SET_DBGWVRn(13, (uint64_t)debug_state->uds.ds32.wvr[13]); |
618 | SET_DBGWCRn(13, (uint64_t)debug_state->uds.ds32.wcr[13], all_ctrls); | |
f427ee49 | 619 | OS_FALLTHROUGH; |
5ba3f43e | 620 | case 13: |
a39ff7e2 A |
621 | SET_DBGWVRn(12, (uint64_t)debug_state->uds.ds32.wvr[12]); |
622 | SET_DBGWCRn(12, (uint64_t)debug_state->uds.ds32.wcr[12], all_ctrls); | |
f427ee49 | 623 | OS_FALLTHROUGH; |
5ba3f43e | 624 | case 12: |
a39ff7e2 A |
625 | SET_DBGWVRn(11, (uint64_t)debug_state->uds.ds32.wvr[11]); |
626 | SET_DBGWCRn(11, (uint64_t)debug_state->uds.ds32.wcr[11], all_ctrls); | |
f427ee49 | 627 | OS_FALLTHROUGH; |
5ba3f43e | 628 | case 11: |
a39ff7e2 A |
629 | SET_DBGWVRn(10, (uint64_t)debug_state->uds.ds32.wvr[10]); |
630 | SET_DBGWCRn(10, (uint64_t)debug_state->uds.ds32.wcr[10], all_ctrls); | |
f427ee49 | 631 | OS_FALLTHROUGH; |
5ba3f43e | 632 | case 10: |
a39ff7e2 A |
633 | SET_DBGWVRn(9, (uint64_t)debug_state->uds.ds32.wvr[9]); |
634 | SET_DBGWCRn(9, (uint64_t)debug_state->uds.ds32.wcr[9], all_ctrls); | |
f427ee49 | 635 | OS_FALLTHROUGH; |
5ba3f43e | 636 | case 9: |
a39ff7e2 A |
637 | SET_DBGWVRn(8, (uint64_t)debug_state->uds.ds32.wvr[8]); |
638 | SET_DBGWCRn(8, (uint64_t)debug_state->uds.ds32.wcr[8], all_ctrls); | |
f427ee49 | 639 | OS_FALLTHROUGH; |
5ba3f43e | 640 | case 8: |
a39ff7e2 A |
641 | SET_DBGWVRn(7, (uint64_t)debug_state->uds.ds32.wvr[7]); |
642 | SET_DBGWCRn(7, (uint64_t)debug_state->uds.ds32.wcr[7], all_ctrls); | |
f427ee49 | 643 | OS_FALLTHROUGH; |
5ba3f43e | 644 | case 7: |
a39ff7e2 A |
645 | SET_DBGWVRn(6, (uint64_t)debug_state->uds.ds32.wvr[6]); |
646 | SET_DBGWCRn(6, (uint64_t)debug_state->uds.ds32.wcr[6], all_ctrls); | |
f427ee49 | 647 | OS_FALLTHROUGH; |
5ba3f43e | 648 | case 6: |
a39ff7e2 A |
649 | SET_DBGWVRn(5, (uint64_t)debug_state->uds.ds32.wvr[5]); |
650 | SET_DBGWCRn(5, (uint64_t)debug_state->uds.ds32.wcr[5], all_ctrls); | |
f427ee49 | 651 | OS_FALLTHROUGH; |
5ba3f43e | 652 | case 5: |
a39ff7e2 A |
653 | SET_DBGWVRn(4, (uint64_t)debug_state->uds.ds32.wvr[4]); |
654 | SET_DBGWCRn(4, (uint64_t)debug_state->uds.ds32.wcr[4], all_ctrls); | |
f427ee49 | 655 | OS_FALLTHROUGH; |
5ba3f43e | 656 | case 4: |
a39ff7e2 A |
657 | SET_DBGWVRn(3, (uint64_t)debug_state->uds.ds32.wvr[3]); |
658 | SET_DBGWCRn(3, (uint64_t)debug_state->uds.ds32.wcr[3], all_ctrls); | |
f427ee49 | 659 | OS_FALLTHROUGH; |
5ba3f43e | 660 | case 3: |
a39ff7e2 A |
661 | SET_DBGWVRn(2, (uint64_t)debug_state->uds.ds32.wvr[2]); |
662 | SET_DBGWCRn(2, (uint64_t)debug_state->uds.ds32.wcr[2], all_ctrls); | |
f427ee49 | 663 | OS_FALLTHROUGH; |
5ba3f43e | 664 | case 2: |
a39ff7e2 A |
665 | SET_DBGWVRn(1, (uint64_t)debug_state->uds.ds32.wvr[1]); |
666 | SET_DBGWCRn(1, (uint64_t)debug_state->uds.ds32.wcr[1], all_ctrls); | |
f427ee49 | 667 | OS_FALLTHROUGH; |
5ba3f43e | 668 | case 1: |
a39ff7e2 A |
669 | SET_DBGWVRn(0, (uint64_t)debug_state->uds.ds32.wvr[0]); |
670 | SET_DBGWCRn(0, (uint64_t)debug_state->uds.ds32.wcr[0], all_ctrls); | |
f427ee49 | 671 | OS_FALLTHROUGH; |
5ba3f43e A |
672 | default: |
673 | break; | |
674 | } | |
675 | ||
a39ff7e2 A |
676 | #if defined(CONFIG_KERNEL_INTEGRITY) |
677 | if ((all_ctrls & (ARM_DBG_CR_MODE_CONTROL_PRIVILEGED | ARM_DBG_CR_HIGHER_MODE_ENABLE)) != 0) { | |
678 | panic("sorry, self-hosted debug is not supported: 0x%llx", all_ctrls); | |
679 | } | |
680 | #endif | |
681 | ||
5ba3f43e A |
682 | /* |
683 | * Breakpoint/Watchpoint Enable | |
684 | */ | |
f427ee49 | 685 | if (all_ctrls != 0) { |
a39ff7e2 | 686 | update_mdscr(0, 0x8000); // MDSCR_EL1[MDE] |
5ba3f43e | 687 | } else { |
a39ff7e2 | 688 | update_mdscr(0x8000, 0); |
5ba3f43e | 689 | } |
cb323159 | 690 | |
5ba3f43e A |
691 | /* |
692 | * Software debug single step enable | |
693 | */ | |
694 | if (debug_state->uds.ds32.mdscr_el1 & 0x1) { | |
a39ff7e2 | 695 | update_mdscr(0x8000, 1); // ~MDE | SS : no brk/watch while single stepping (which we've set) |
5ba3f43e | 696 | |
cb323159 | 697 | mask_saved_state_cpsr(current_thread()->machine.upcb, PSR64_SS, 0); |
5ba3f43e | 698 | } else { |
a39ff7e2 | 699 | update_mdscr(0x1, 0); |
5ba3f43e A |
700 | |
701 | #if SINGLE_STEP_RETIRE_ERRATA | |
702 | // Workaround for radar 20619637 | |
703 | __builtin_arm_isb(ISB_SY); | |
704 | #endif | |
705 | } | |
706 | ||
707 | (void) ml_set_interrupts_enabled(intr); | |
5ba3f43e A |
708 | } |
709 | ||
f427ee49 A |
710 | void |
711 | arm_debug_set64(arm_debug_state_t *debug_state) | |
5ba3f43e | 712 | { |
cb323159 A |
713 | struct cpu_data * cpu_data_ptr; |
714 | arm_debug_info_t * debug_info = arm_debug_info(); | |
f427ee49 | 715 | boolean_t intr; |
cb323159 | 716 | arm_debug_state_t off_state; |
cb323159 | 717 | uint64_t all_ctrls = 0; |
5ba3f43e A |
718 | |
719 | intr = ml_set_interrupts_enabled(FALSE); | |
720 | cpu_data_ptr = getCpuDatap(); | |
721 | ||
722 | // Set current user debug | |
723 | cpu_data_ptr->cpu_user_debug = debug_state; | |
724 | ||
725 | if (NULL == debug_state) { | |
726 | bzero(&off_state, sizeof(off_state)); | |
727 | debug_state = &off_state; | |
728 | } | |
729 | ||
730 | switch (debug_info->num_breakpoint_pairs) { | |
731 | case 16: | |
a39ff7e2 A |
732 | SET_DBGBVRn(15, debug_state->uds.ds64.bvr[15]); |
733 | SET_DBGBCRn(15, (uint64_t)debug_state->uds.ds64.bcr[15], all_ctrls); | |
f427ee49 | 734 | OS_FALLTHROUGH; |
5ba3f43e | 735 | case 15: |
a39ff7e2 A |
736 | SET_DBGBVRn(14, debug_state->uds.ds64.bvr[14]); |
737 | SET_DBGBCRn(14, (uint64_t)debug_state->uds.ds64.bcr[14], all_ctrls); | |
f427ee49 | 738 | OS_FALLTHROUGH; |
5ba3f43e | 739 | case 14: |
a39ff7e2 A |
740 | SET_DBGBVRn(13, debug_state->uds.ds64.bvr[13]); |
741 | SET_DBGBCRn(13, (uint64_t)debug_state->uds.ds64.bcr[13], all_ctrls); | |
f427ee49 | 742 | OS_FALLTHROUGH; |
5ba3f43e | 743 | case 13: |
a39ff7e2 A |
744 | SET_DBGBVRn(12, debug_state->uds.ds64.bvr[12]); |
745 | SET_DBGBCRn(12, (uint64_t)debug_state->uds.ds64.bcr[12], all_ctrls); | |
f427ee49 | 746 | OS_FALLTHROUGH; |
5ba3f43e | 747 | case 12: |
a39ff7e2 A |
748 | SET_DBGBVRn(11, debug_state->uds.ds64.bvr[11]); |
749 | SET_DBGBCRn(11, (uint64_t)debug_state->uds.ds64.bcr[11], all_ctrls); | |
f427ee49 | 750 | OS_FALLTHROUGH; |
5ba3f43e | 751 | case 11: |
a39ff7e2 A |
752 | SET_DBGBVRn(10, debug_state->uds.ds64.bvr[10]); |
753 | SET_DBGBCRn(10, (uint64_t)debug_state->uds.ds64.bcr[10], all_ctrls); | |
f427ee49 | 754 | OS_FALLTHROUGH; |
5ba3f43e | 755 | case 10: |
a39ff7e2 A |
756 | SET_DBGBVRn(9, debug_state->uds.ds64.bvr[9]); |
757 | SET_DBGBCRn(9, (uint64_t)debug_state->uds.ds64.bcr[9], all_ctrls); | |
f427ee49 | 758 | OS_FALLTHROUGH; |
5ba3f43e | 759 | case 9: |
a39ff7e2 A |
760 | SET_DBGBVRn(8, debug_state->uds.ds64.bvr[8]); |
761 | SET_DBGBCRn(8, (uint64_t)debug_state->uds.ds64.bcr[8], all_ctrls); | |
f427ee49 | 762 | OS_FALLTHROUGH; |
5ba3f43e | 763 | case 8: |
a39ff7e2 A |
764 | SET_DBGBVRn(7, debug_state->uds.ds64.bvr[7]); |
765 | SET_DBGBCRn(7, (uint64_t)debug_state->uds.ds64.bcr[7], all_ctrls); | |
f427ee49 | 766 | OS_FALLTHROUGH; |
5ba3f43e | 767 | case 7: |
a39ff7e2 A |
768 | SET_DBGBVRn(6, debug_state->uds.ds64.bvr[6]); |
769 | SET_DBGBCRn(6, (uint64_t)debug_state->uds.ds64.bcr[6], all_ctrls); | |
f427ee49 | 770 | OS_FALLTHROUGH; |
5ba3f43e | 771 | case 6: |
a39ff7e2 A |
772 | SET_DBGBVRn(5, debug_state->uds.ds64.bvr[5]); |
773 | SET_DBGBCRn(5, (uint64_t)debug_state->uds.ds64.bcr[5], all_ctrls); | |
f427ee49 | 774 | OS_FALLTHROUGH; |
5ba3f43e | 775 | case 5: |
a39ff7e2 A |
776 | SET_DBGBVRn(4, debug_state->uds.ds64.bvr[4]); |
777 | SET_DBGBCRn(4, (uint64_t)debug_state->uds.ds64.bcr[4], all_ctrls); | |
f427ee49 | 778 | OS_FALLTHROUGH; |
5ba3f43e | 779 | case 4: |
a39ff7e2 A |
780 | SET_DBGBVRn(3, debug_state->uds.ds64.bvr[3]); |
781 | SET_DBGBCRn(3, (uint64_t)debug_state->uds.ds64.bcr[3], all_ctrls); | |
f427ee49 | 782 | OS_FALLTHROUGH; |
5ba3f43e | 783 | case 3: |
a39ff7e2 A |
784 | SET_DBGBVRn(2, debug_state->uds.ds64.bvr[2]); |
785 | SET_DBGBCRn(2, (uint64_t)debug_state->uds.ds64.bcr[2], all_ctrls); | |
f427ee49 | 786 | OS_FALLTHROUGH; |
5ba3f43e | 787 | case 2: |
a39ff7e2 A |
788 | SET_DBGBVRn(1, debug_state->uds.ds64.bvr[1]); |
789 | SET_DBGBCRn(1, (uint64_t)debug_state->uds.ds64.bcr[1], all_ctrls); | |
f427ee49 | 790 | OS_FALLTHROUGH; |
5ba3f43e | 791 | case 1: |
a39ff7e2 A |
792 | SET_DBGBVRn(0, debug_state->uds.ds64.bvr[0]); |
793 | SET_DBGBCRn(0, (uint64_t)debug_state->uds.ds64.bcr[0], all_ctrls); | |
f427ee49 | 794 | OS_FALLTHROUGH; |
5ba3f43e A |
795 | default: |
796 | break; | |
797 | } | |
798 | ||
799 | switch (debug_info->num_watchpoint_pairs) { | |
800 | case 16: | |
a39ff7e2 A |
801 | SET_DBGWVRn(15, debug_state->uds.ds64.wvr[15]); |
802 | SET_DBGWCRn(15, (uint64_t)debug_state->uds.ds64.wcr[15], all_ctrls); | |
f427ee49 | 803 | OS_FALLTHROUGH; |
5ba3f43e | 804 | case 15: |
a39ff7e2 A |
805 | SET_DBGWVRn(14, debug_state->uds.ds64.wvr[14]); |
806 | SET_DBGWCRn(14, (uint64_t)debug_state->uds.ds64.wcr[14], all_ctrls); | |
f427ee49 | 807 | OS_FALLTHROUGH; |
5ba3f43e | 808 | case 14: |
a39ff7e2 A |
809 | SET_DBGWVRn(13, debug_state->uds.ds64.wvr[13]); |
810 | SET_DBGWCRn(13, (uint64_t)debug_state->uds.ds64.wcr[13], all_ctrls); | |
f427ee49 | 811 | OS_FALLTHROUGH; |
5ba3f43e | 812 | case 13: |
a39ff7e2 A |
813 | SET_DBGWVRn(12, debug_state->uds.ds64.wvr[12]); |
814 | SET_DBGWCRn(12, (uint64_t)debug_state->uds.ds64.wcr[12], all_ctrls); | |
f427ee49 | 815 | OS_FALLTHROUGH; |
5ba3f43e | 816 | case 12: |
a39ff7e2 A |
817 | SET_DBGWVRn(11, debug_state->uds.ds64.wvr[11]); |
818 | SET_DBGWCRn(11, (uint64_t)debug_state->uds.ds64.wcr[11], all_ctrls); | |
f427ee49 | 819 | OS_FALLTHROUGH; |
5ba3f43e | 820 | case 11: |
a39ff7e2 A |
821 | SET_DBGWVRn(10, debug_state->uds.ds64.wvr[10]); |
822 | SET_DBGWCRn(10, (uint64_t)debug_state->uds.ds64.wcr[10], all_ctrls); | |
f427ee49 | 823 | OS_FALLTHROUGH; |
5ba3f43e | 824 | case 10: |
a39ff7e2 A |
825 | SET_DBGWVRn(9, debug_state->uds.ds64.wvr[9]); |
826 | SET_DBGWCRn(9, (uint64_t)debug_state->uds.ds64.wcr[9], all_ctrls); | |
f427ee49 | 827 | OS_FALLTHROUGH; |
5ba3f43e | 828 | case 9: |
a39ff7e2 A |
829 | SET_DBGWVRn(8, debug_state->uds.ds64.wvr[8]); |
830 | SET_DBGWCRn(8, (uint64_t)debug_state->uds.ds64.wcr[8], all_ctrls); | |
f427ee49 | 831 | OS_FALLTHROUGH; |
5ba3f43e | 832 | case 8: |
a39ff7e2 A |
833 | SET_DBGWVRn(7, debug_state->uds.ds64.wvr[7]); |
834 | SET_DBGWCRn(7, (uint64_t)debug_state->uds.ds64.wcr[7], all_ctrls); | |
f427ee49 | 835 | OS_FALLTHROUGH; |
5ba3f43e | 836 | case 7: |
a39ff7e2 A |
837 | SET_DBGWVRn(6, debug_state->uds.ds64.wvr[6]); |
838 | SET_DBGWCRn(6, (uint64_t)debug_state->uds.ds64.wcr[6], all_ctrls); | |
f427ee49 | 839 | OS_FALLTHROUGH; |
5ba3f43e | 840 | case 6: |
a39ff7e2 A |
841 | SET_DBGWVRn(5, debug_state->uds.ds64.wvr[5]); |
842 | SET_DBGWCRn(5, (uint64_t)debug_state->uds.ds64.wcr[5], all_ctrls); | |
f427ee49 | 843 | OS_FALLTHROUGH; |
5ba3f43e | 844 | case 5: |
a39ff7e2 A |
845 | SET_DBGWVRn(4, debug_state->uds.ds64.wvr[4]); |
846 | SET_DBGWCRn(4, (uint64_t)debug_state->uds.ds64.wcr[4], all_ctrls); | |
f427ee49 | 847 | OS_FALLTHROUGH; |
5ba3f43e | 848 | case 4: |
a39ff7e2 A |
849 | SET_DBGWVRn(3, debug_state->uds.ds64.wvr[3]); |
850 | SET_DBGWCRn(3, (uint64_t)debug_state->uds.ds64.wcr[3], all_ctrls); | |
f427ee49 | 851 | OS_FALLTHROUGH; |
5ba3f43e | 852 | case 3: |
a39ff7e2 A |
853 | SET_DBGWVRn(2, debug_state->uds.ds64.wvr[2]); |
854 | SET_DBGWCRn(2, (uint64_t)debug_state->uds.ds64.wcr[2], all_ctrls); | |
f427ee49 | 855 | OS_FALLTHROUGH; |
5ba3f43e | 856 | case 2: |
a39ff7e2 A |
857 | SET_DBGWVRn(1, debug_state->uds.ds64.wvr[1]); |
858 | SET_DBGWCRn(1, (uint64_t)debug_state->uds.ds64.wcr[1], all_ctrls); | |
f427ee49 | 859 | OS_FALLTHROUGH; |
5ba3f43e | 860 | case 1: |
a39ff7e2 A |
861 | SET_DBGWVRn(0, debug_state->uds.ds64.wvr[0]); |
862 | SET_DBGWCRn(0, (uint64_t)debug_state->uds.ds64.wcr[0], all_ctrls); | |
f427ee49 | 863 | OS_FALLTHROUGH; |
5ba3f43e A |
864 | default: |
865 | break; | |
866 | } | |
867 | ||
a39ff7e2 A |
868 | #if defined(CONFIG_KERNEL_INTEGRITY) |
869 | if ((all_ctrls & (ARM_DBG_CR_MODE_CONTROL_PRIVILEGED | ARM_DBG_CR_HIGHER_MODE_ENABLE)) != 0) { | |
870 | panic("sorry, self-hosted debug is not supported: 0x%llx", all_ctrls); | |
871 | } | |
872 | #endif | |
873 | ||
5ba3f43e A |
874 | /* |
875 | * Breakpoint/Watchpoint Enable | |
876 | */ | |
f427ee49 | 877 | if (all_ctrls != 0) { |
a39ff7e2 | 878 | update_mdscr(0, 0x8000); // MDSCR_EL1[MDE] |
f427ee49 A |
879 | } else { |
880 | update_mdscr(0x8000, 0); | |
5ba3f43e | 881 | } |
cb323159 | 882 | |
5ba3f43e A |
883 | /* |
884 | * Software debug single step enable | |
885 | */ | |
886 | if (debug_state->uds.ds64.mdscr_el1 & 0x1) { | |
a39ff7e2 | 887 | update_mdscr(0x8000, 1); // ~MDE | SS : no brk/watch while single stepping (which we've set) |
5ba3f43e | 888 | |
cb323159 | 889 | mask_saved_state_cpsr(current_thread()->machine.upcb, PSR64_SS, 0); |
5ba3f43e | 890 | } else { |
a39ff7e2 | 891 | update_mdscr(0x1, 0); |
5ba3f43e A |
892 | |
893 | #if SINGLE_STEP_RETIRE_ERRATA | |
894 | // Workaround for radar 20619637 | |
895 | __builtin_arm_isb(ISB_SY); | |
896 | #endif | |
897 | } | |
898 | ||
899 | (void) ml_set_interrupts_enabled(intr); | |
5ba3f43e A |
900 | } |
901 | ||
f427ee49 A |
902 | void |
903 | arm_debug_set(arm_debug_state_t *debug_state) | |
5ba3f43e A |
904 | { |
905 | if (debug_state) { | |
906 | switch (debug_state->dsh.flavor) { | |
907 | case ARM_DEBUG_STATE32: | |
908 | arm_debug_set32(debug_state); | |
909 | break; | |
910 | case ARM_DEBUG_STATE64: | |
911 | arm_debug_set64(debug_state); | |
912 | break; | |
913 | default: | |
914 | panic("arm_debug_set"); | |
915 | break; | |
916 | } | |
917 | } else { | |
f427ee49 | 918 | if (thread_is_64bit_data(current_thread())) { |
5ba3f43e | 919 | arm_debug_set64(debug_state); |
f427ee49 | 920 | } else { |
5ba3f43e | 921 | arm_debug_set32(debug_state); |
f427ee49 | 922 | } |
5ba3f43e A |
923 | } |
924 | } | |
925 | ||
926 | #define VM_MAX_ADDRESS32 ((vm_address_t) 0x80000000) | |
927 | boolean_t | |
928 | debug_legacy_state_is_valid(arm_legacy_debug_state_t *debug_state) | |
929 | { | |
cb323159 | 930 | arm_debug_info_t *debug_info = arm_debug_info(); |
5ba3f43e A |
931 | uint32_t i; |
932 | for (i = 0; i < debug_info->num_breakpoint_pairs; i++) { | |
f427ee49 | 933 | if (0 != debug_state->bcr[i] && VM_MAX_ADDRESS32 <= debug_state->bvr[i]) { |
5ba3f43e | 934 | return FALSE; |
f427ee49 | 935 | } |
5ba3f43e A |
936 | } |
937 | ||
938 | for (i = 0; i < debug_info->num_watchpoint_pairs; i++) { | |
f427ee49 | 939 | if (0 != debug_state->wcr[i] && VM_MAX_ADDRESS32 <= debug_state->wvr[i]) { |
5ba3f43e | 940 | return FALSE; |
f427ee49 | 941 | } |
5ba3f43e A |
942 | } |
943 | return TRUE; | |
944 | } | |
945 | ||
946 | boolean_t | |
947 | debug_state_is_valid32(arm_debug_state32_t *debug_state) | |
948 | { | |
cb323159 | 949 | arm_debug_info_t *debug_info = arm_debug_info(); |
5ba3f43e A |
950 | uint32_t i; |
951 | for (i = 0; i < debug_info->num_breakpoint_pairs; i++) { | |
f427ee49 | 952 | if (0 != debug_state->bcr[i] && VM_MAX_ADDRESS32 <= debug_state->bvr[i]) { |
5ba3f43e | 953 | return FALSE; |
f427ee49 | 954 | } |
5ba3f43e A |
955 | } |
956 | ||
957 | for (i = 0; i < debug_info->num_watchpoint_pairs; i++) { | |
f427ee49 | 958 | if (0 != debug_state->wcr[i] && VM_MAX_ADDRESS32 <= debug_state->wvr[i]) { |
5ba3f43e | 959 | return FALSE; |
f427ee49 | 960 | } |
5ba3f43e A |
961 | } |
962 | return TRUE; | |
963 | } | |
964 | ||
965 | boolean_t | |
966 | debug_state_is_valid64(arm_debug_state64_t *debug_state) | |
967 | { | |
cb323159 | 968 | arm_debug_info_t *debug_info = arm_debug_info(); |
5ba3f43e A |
969 | uint32_t i; |
970 | for (i = 0; i < debug_info->num_breakpoint_pairs; i++) { | |
f427ee49 | 971 | if (0 != debug_state->bcr[i] && MACH_VM_MAX_ADDRESS <= debug_state->bvr[i]) { |
5ba3f43e | 972 | return FALSE; |
f427ee49 | 973 | } |
5ba3f43e A |
974 | } |
975 | ||
976 | for (i = 0; i < debug_info->num_watchpoint_pairs; i++) { | |
f427ee49 | 977 | if (0 != debug_state->wcr[i] && MACH_VM_MAX_ADDRESS <= debug_state->wvr[i]) { |
5ba3f43e | 978 | return FALSE; |
f427ee49 | 979 | } |
5ba3f43e A |
980 | } |
981 | return TRUE; | |
982 | } | |
983 | ||
984 | /* | |
985 | * Duplicate one arm_debug_state_t to another. "all" parameter | |
986 | * is ignored in the case of ARM -- Is this the right assumption? | |
987 | */ | |
988 | void | |
cb323159 | 989 | copy_legacy_debug_state(arm_legacy_debug_state_t * src, |
f427ee49 A |
990 | arm_legacy_debug_state_t * target, |
991 | __unused boolean_t all) | |
5ba3f43e A |
992 | { |
993 | bcopy(src, target, sizeof(arm_legacy_debug_state_t)); | |
994 | } | |
995 | ||
996 | void | |
cb323159 | 997 | copy_debug_state32(arm_debug_state32_t * src, |
f427ee49 A |
998 | arm_debug_state32_t * target, |
999 | __unused boolean_t all) | |
5ba3f43e A |
1000 | { |
1001 | bcopy(src, target, sizeof(arm_debug_state32_t)); | |
1002 | } | |
1003 | ||
1004 | void | |
cb323159 | 1005 | copy_debug_state64(arm_debug_state64_t * src, |
f427ee49 A |
1006 | arm_debug_state64_t * target, |
1007 | __unused boolean_t all) | |
5ba3f43e A |
1008 | { |
1009 | bcopy(src, target, sizeof(arm_debug_state64_t)); | |
1010 | } | |
1011 | ||
1012 | kern_return_t | |
cb323159 | 1013 | machine_thread_set_tsd_base(thread_t thread, |
f427ee49 | 1014 | mach_vm_offset_t tsd_base) |
5ba3f43e | 1015 | { |
5ba3f43e A |
1016 | if (thread->task == kernel_task) { |
1017 | return KERN_INVALID_ARGUMENT; | |
1018 | } | |
1019 | ||
1020 | if (tsd_base & MACHDEP_CPUNUM_MASK) { | |
1021 | return KERN_INVALID_ARGUMENT; | |
1022 | } | |
1023 | ||
d9a64523 | 1024 | if (thread_is_64bit_addr(thread)) { |
f427ee49 | 1025 | if (tsd_base > vm_map_max(thread->map)) { |
5ba3f43e | 1026 | tsd_base = 0ULL; |
f427ee49 | 1027 | } |
5ba3f43e | 1028 | } else { |
f427ee49 | 1029 | if (tsd_base > UINT32_MAX) { |
5ba3f43e | 1030 | tsd_base = 0ULL; |
f427ee49 | 1031 | } |
5ba3f43e A |
1032 | } |
1033 | ||
1034 | thread->machine.cthread_self = tsd_base; | |
1035 | ||
1036 | /* For current thread, make the TSD base active immediately */ | |
1037 | if (thread == current_thread()) { | |
1038 | uint64_t cpunum, tpidrro_el0; | |
1039 | ||
1040 | mp_disable_preemption(); | |
1041 | tpidrro_el0 = get_tpidrro(); | |
1042 | cpunum = tpidrro_el0 & (MACHDEP_CPUNUM_MASK); | |
1043 | set_tpidrro(tsd_base | cpunum); | |
1044 | mp_enable_preemption(); | |
5ba3f43e A |
1045 | } |
1046 | ||
1047 | return KERN_SUCCESS; | |
1048 | } | |
0a7de745 A |
1049 | |
1050 | void | |
1051 | machine_tecs(__unused thread_t thr) | |
1052 | { | |
1053 | } | |
1054 | ||
1055 | int | |
1056 | machine_csv(__unused cpuvn_e cve) | |
1057 | { | |
1058 | return 0; | |
1059 | } | |
f427ee49 | 1060 | |
2a1bd2d3 A |
1061 | #if __ARM_ARCH_8_5__ |
1062 | void | |
1063 | arm_context_switch_requires_sync() | |
1064 | { | |
1065 | current_cpu_datap()->sync_on_cswitch = 1; | |
1066 | } | |
1067 | #endif | |
f427ee49 A |
1068 | |
1069 | #if __has_feature(ptrauth_calls) | |
1070 | boolean_t | |
1071 | arm_user_jop_disabled(void) | |
1072 | { | |
f427ee49 | 1073 | return FALSE; |
f427ee49 A |
1074 | } |
1075 | #endif /* __has_feature(ptrauth_calls) */ |