Deduplicated cache handling. Fixed jump hatch being filled with random stuff

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2009-11-28 23:34:48 +01:00
parent a44c7e23d8
commit 3c68ed3d80
4 changed files with 34 additions and 65 deletions

View file

@ -1,29 +1,7 @@
#include <grub/symbol.h> #include <grub/symbol.h>
/* FIXME: This should invalidate only part of memory. */
FUNCTION (grub_cpu_flush_cache) FUNCTION (grub_cpu_flush_cache)
FUNCTION (grub_arch_sync_caches) FUNCTION (grub_arch_sync_caches)
move $t2, $a0 #include "cache_flush.S"
addu $t3, $a0, $a1
srl $t2, $t2, 5
sll $t2, $t2, 5
addu $t3, $t3, 0x1f
srl $t3, $t3, 5
sll $t3, $t3, 5
move $t0, $t2
subu $t1, $t3, $t2
r1:
cache 1, 0($t0)
addiu $t0, $t0, 0x1
addiu $t1, $t1, 0xffff
bne $t1, $zero, r1
sync
move $t0, $t2
subu $t1, $t3, $t2
r2:
cache 0, 0($t0)
addiu $t0, $t0, 0x1
addiu $t1, $t1, 0xffff
bne $t1, $zero, r2
sync
j $ra j $ra

23
kern/mips/cache_flush.S Normal file
View file

@ -0,0 +1,23 @@
move $t2, $a0
addu $t3, $a0, $a1
srl $t2, $t2, 5
sll $t2, $t2, 5
addu $t3, $t3, 0x1f
srl $t3, $t3, 5
sll $t3, $t3, 5
move $t0, $t2
subu $t1, $t3, $t2
1:
cache 1, 0($t0)
addiu $t0, $t0, 0x1
addiu $t1, $t1, 0xffff
bne $t1, $zero, 1b
sync
move $t0, $t2
subu $t1, $t3, $t2
2:
cache 0, 0($t0)
addiu $t0, $t0, 0x1
addiu $t1, $t1, 0xffff
bne $t1, $zero, 2b
sync

View file

@ -64,6 +64,9 @@ write_jump (int regn, void **target)
/* j $r. */ /* j $r. */
*(grub_uint32_t *) *target = (regn<<21) | 0x8; *(grub_uint32_t *) *target = (regn<<21) | 0x8;
*target = ((grub_uint32_t *) *target) + 1; *target = ((grub_uint32_t *) *target) + 1;
/* nop. */
*(grub_uint32_t *) *target = 0;
*target = ((grub_uint32_t *) *target) + 1;
} }
static void static void

View file

@ -21,8 +21,8 @@
.p2align 4 /* force 16-byte alignment */ .p2align 4 /* force 16-byte alignment */
VARIABLE (grub_relocator32_forward_start) VARIABLE (grub_relocator32_forward_start)
move $12, $9 move $a0, $9
move $13, $10 move $a1, $10
copycont1: copycont1:
lb $11,0($8) lb $11,0($8)
@ -32,31 +32,13 @@ copycont1:
addiu $10, $10, 0xffff addiu $10, $10, 0xffff
bne $10, $0, copycont1 bne $10, $0, copycont1
move $9, $12 #include "../../kern/mips/cache_flush.S"
move $10, $13
cachecont1a:
cache 1,0($12)
addiu $12, $12, 0x1
addiu $13, $13, 0xffff
bne $13, $0, cachecont1a
sync
move $12, $9
move $13, $10
cachecont1b:
cache 0,0($12)
addiu $12, $12, 0x1
addiu $13, $13, 0xffff
bne $13, $0, cachecont1b
sync
VARIABLE (grub_relocator32_forward_end) VARIABLE (grub_relocator32_forward_end)
VARIABLE (grub_relocator32_backward_start) VARIABLE (grub_relocator32_backward_start)
move $12, $9 move $a0, $9
move $13, $10 move $a1, $10
addu $9, $9, $10 addu $9, $9, $10
addu $8, $8, $10 addu $8, $8, $10
@ -71,23 +53,6 @@ copycont2:
addiu $10, 0xffff addiu $10, 0xffff
bne $10, $0, copycont2 bne $10, $0, copycont2
move $9, $12 #include "../../kern/mips/cache_flush.S"
move $10, $13
cachecont2a:
cache 1,0($12)
addiu $12, $12, 0x1
addiu $13, $13, 0xffff
bne $13, $0, cachecont2a
sync
move $12, $9
move $13, $10
cachecont2b:
cache 0,0($12)
addiu $12, $12, 0x1
addiu $13, $13, 0xffff
bne $13, $0, cachecont2b
sync
VARIABLE (grub_relocator32_backward_end) VARIABLE (grub_relocator32_backward_end)