summaryrefslogtreecommitdiffstats
path: root/sys/boot
diff options
context:
space:
mode:
authormarius <marius@FreeBSD.org>2008-09-08 20:38:48 +0000
committermarius <marius@FreeBSD.org>2008-09-08 20:38:48 +0000
commit45e57c6bd280ab3f6744865db7ee4888c8b2e08b (patch)
tree6b134e49a29b46f74cd02e388d675405a35534fa /sys/boot
parent579a51f222627a676ded829197395af7b2a25f45 (diff)
downloadFreeBSD-src-45e57c6bd280ab3f6744865db7ee4888c8b2e08b.zip
FreeBSD-src-45e57c6bd280ab3f6744865db7ee4888c8b2e08b.tar.gz
USIII and beyond CPUs have stricter requirements when it comes
to synchronization needed after stores to internal ASIs in order to make side-effects visible. This mainly requires the MEMBAR #Sync after such stores to be replaced with a FLUSH. We use KERNBASE as the address to FLUSH as it is guaranteed to not trap. Actually, the USII synchronization rules also already require a FLUSH in pretty much all of the cases changed. We're also hitting an additional USIII synchronization rule which requires stores to AA_IMMU_SFSR to be immediately followed by a DONE, FLUSH or RETRY. Doing so triggers a RED state exception though so leave the MEMBAR #Sync. Linux apparently also has gotten away with doing the same for quite some time now, apart from the fact that it's not clear to me why we need to clear the valid bit from the SFSR in the first place. Reviewed by: nwhitehorn
Diffstat (limited to 'sys/boot')
-rw-r--r--sys/boot/sparc64/loader/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/boot/sparc64/loader/main.c b/sys/boot/sparc64/loader/main.c
index 34fe4ce..5091caa 100644
--- a/sys/boot/sparc64/loader/main.c
+++ b/sys/boot/sparc64/loader/main.c
@@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$");
#include <machine/tlb.h>
#include <machine/upa.h>
#include <machine/ver.h>
+#include <machine/vmparam.h>
#include "bootstrap.h"
#include "libofw.h"
@@ -461,7 +462,7 @@ itlb_enter_sun4u(u_long vpn, u_long data)
stxa(AA_IMMU_TAR, ASI_IMMU,
TLB_TAR_VA(vpn) | TLB_TAR_CTX(TLB_CTX_KERNEL));
stxa(0, ASI_ITLB_DATA_IN_REG, data);
- membar(Sync);
+ flush(KERNBASE);
wrpr(pstate, reg, 0);
}
OpenPOWER on IntegriCloud