aboutsummaryrefslogtreecommitdiff
path: root/sys/arm64
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2018-10-01 14:27:53 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2018-10-01 14:27:53 +0000
commit47d41ab50e7b8397adf26efbac7b6d1ed5f09463 (patch)
treeb3191f9768658edc1e4fd7c14fa54ab32aee22c6 /sys/arm64
parent30c5525b3cd28170e736202510ab64d51aa703bf (diff)
downloadsrc-47d41ab50e7b8397adf26efbac7b6d1ed5f09463.tar.gz
src-47d41ab50e7b8397adf26efbac7b6d1ed5f09463.zip
arm64: Raise again L3 table for early devmap
The initial raise in r336519 wasn't enough for using big resolution (1920 x 1200 for example). Raise it again. Reported by: bob prohaska <fbsd@www.zefox.net> Tested by: bob prohaska <fbsd@www.zefox.net> Approved by: re (gjb@)
Notes
Notes: svn path=/head/; revision=339044
Diffstat (limited to 'sys/arm64')
-rw-r--r--sys/arm64/include/pte.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm64/include/pte.h b/sys/arm64/include/pte.h
index acd3f81ab41c..7aa216e92b43 100644
--- a/sys/arm64/include/pte.h
+++ b/sys/arm64/include/pte.h
@@ -109,7 +109,7 @@ typedef uint64_t pt_entry_t; /* page table entry */
/* 0x2 also marks an invalid address */
#define L3_PAGE 0x3
-#define PMAP_MAPDEV_EARLY_SIZE (L2_SIZE * 4)
+#define PMAP_MAPDEV_EARLY_SIZE (L2_SIZE * 8)
#define L0_ENTRIES_SHIFT 9
#define L0_ENTRIES (1 << L0_ENTRIES_SHIFT)