aboutsummaryrefslogtreecommitdiff
path: root/asm/misc.S
diff options
context:
space:
mode:
Diffstat (limited to 'asm/misc.S')
-rw-r--r--asm/misc.S60
1 files changed, 60 insertions, 0 deletions
diff --git a/asm/misc.S b/asm/misc.S
index 4c9eee9..381590b 100644
--- a/asm/misc.S
+++ b/asm/misc.S
@@ -19,6 +19,8 @@
#include <processor.h>
#include <stack.h>
+#define OLD_BINUTILS 1
+
.section ".text","ax"
.balign 0x10
@@ -63,3 +65,61 @@ cleanup_local_tlb:
bdnz 1b
ptesync
blr
+
+ .global cleanup_global_tlb
+cleanup_global_tlb:
+
+ /* Only supported on P9 for now */
+ mfspr %r3,SPR_PVR
+ srdi %r3,%r3,16
+ cmpwi cr0,%r3,PVR_TYPE_P9
+ bnelr
+
+ /* Sync out previous updates */
+ ptesync
+
+#ifndef OLD_BINUTILS
+ .machine "power9"
+#endif
+ /* Lead RB with IS=11 */
+ li %r3,3
+ sldi %r3,%r3,10
+ li %r0,0
+
+ /* Blow up radix partition scoped translations */
+#ifdef OLD_BINUTILS
+ .long 0x7c0b1a64
+#else
+ tlbie %r3, %r0 /* rs */, 2 /* ric */, 1 /* prs */, 1 /* r */
+#endif
+ eieio
+ tlbsync
+ ptesync
+#ifdef OLD_BINUTILS
+ .long 0x7c091a64
+#else
+ tlbie %r3, %r0 /* rs */, 2 /* ric */, 0 /* prs */, 1 /* r */
+#endif
+ eieio
+ tlbsync
+ ptesync
+
+ /* Blow up hash partition scoped translations */
+#ifdef OLD_BINUTILS
+ .long 0x7c0a1a64
+#else
+ tlbie %r3, %r0 /* rs */, 2 /* ric */, 1 /* prs */, 0 /* r */
+#endif
+ eieio
+ tlbsync
+ ptesync
+#ifdef OLD_BINUTILS
+ .long 0x7c081a64
+#else
+ tlbie %r3, %r0 /* rs */, 2 /* ric */, 0 /* prs */, 0 /* r */
+#endif
+ eieio
+ tlbsync
+ ptesync
+
+ blr