Module Name: src
Committed By: skrll
Date: Sun Jul 12 06:37:39 UTC 2020
Modified Files:
src/sys/arch/aarch64/aarch64: locore.S
Log Message:
More DEBUG
To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/arch/aarch64/aarch64/locore.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/aarch64/aarch64/locore.S
diff -u src/sys/arch/aarch64/aarch64/locore.S:1.65 src/sys/arch/aarch64/aarch64/locore.S:1.66
--- src/sys/arch/aarch64/aarch64/locore.S:1.65 Sun Jul 12 06:35:58 2020
+++ src/sys/arch/aarch64/aarch64/locore.S Sun Jul 12 06:37:39 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.S,v 1.65 2020/07/12 06:35:58 skrll Exp $ */
+/* $NetBSD: locore.S,v 1.66 2020/07/12 06:37:39 skrll Exp $ */
/*
* Copyright (c) 2017 Ryo Shimizu <[email protected]>
@@ -38,7 +38,7 @@
#include <aarch64/hypervisor.h>
#include "assym.h"
-RCSID("$NetBSD: locore.S,v 1.65 2020/07/12 06:35:58 skrll Exp $")
+RCSID("$NetBSD: locore.S,v 1.66 2020/07/12 06:37:39 skrll Exp $")
#ifdef AARCH64_DEVICE_MEM_STRONGLY_ORDERED
#define MAIR_DEVICE_MEM MAIR_DEVICE_nGnRnE
@@ -782,6 +782,9 @@ init_mmutable:
cbz x0, init_mmutable_error
msr ttbr0_el1, x0
+ DPRINTSREG("TTBR0 = ", ttbr0_el1)
+ DPRINTSREG("TTBR1 = ", ttbr1_el1)
+
#ifdef DEBUG_MMU
adr x26, tinyprintf
#else