summaryrefslogtreecommitdiff
path: root/sys/src/9/pc/devarch.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2020-05-22 23:58:24 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2020-05-22 23:58:24 +0200
commitb86bb35c7d82f097e6572d400527046245b877fd (patch)
tree81d8366c8eaf5cfb7df253d3506ffc88c456bb7f /sys/src/9/pc/devarch.c
parent0002fd0cf786d16c9b3e1ab62f0cb92b2461f185 (diff)
pc, pc64: do page attribute table (PAT) init early in cpuidentify()
the page attribute table was initialized in mmuinit(), which is too late for bootscreen(). So now we check for PAT support and insert the write-combine entry early in cpuidentify(). this might have been the cause of some slow EFI framebuffers on machines with overlapping or insufficient MTRR entries.
Diffstat (limited to 'sys/src/9/pc/devarch.c')
-rw-r--r--sys/src/9/pc/devarch.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/src/9/pc/devarch.c b/sys/src/9/pc/devarch.c
index 2da6f5d55..595cbcb8b 100644
--- a/sys/src/9/pc/devarch.c
+++ b/sys/src/9/pc/devarch.c
@@ -749,7 +749,7 @@ cpuidentify(void)
X86type *t, *tab;
uintptr cr4;
ulong regs[4];
- vlong mca, mct;
+ vlong mca, mct, pat;
cpuid(Highstdfunc, regs);
memmove(m->cpuidid, &regs[1], BY2WD); /* bx */
@@ -882,6 +882,13 @@ cpuidentify(void)
rdmsr(0x01, &mct);
}
+ /* IA32_PAT write combining */
+ if((m->cpuiddx & Pat) != 0 && rdmsr(0x277, &pat) != -1){
+ pat &= ~(255LL<<(PATWC*8));
+ pat |= 1LL<<(PATWC*8); /* WC */
+ wrmsr(0x277, pat);
+ }
+
if(m->cpuiddx & Mtrr)
mtrrsync();