Module Name:    src
Committed By:   kiyohara
Date:           Sat Dec 29 14:22:55 UTC 2012

Modified Files:
        src/sys/arch/evbarm/gumstix: gumstix_start.S

Log Message:
Change order for TLB operation.
We can boot Overo EarthSTORM.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/evbarm/gumstix/gumstix_start.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/evbarm/gumstix/gumstix_start.S
diff -u src/sys/arch/evbarm/gumstix/gumstix_start.S:1.10 src/sys/arch/evbarm/gumstix/gumstix_start.S:1.11
--- src/sys/arch/evbarm/gumstix/gumstix_start.S:1.10	Sat Sep  1 14:52:35 2012
+++ src/sys/arch/evbarm/gumstix/gumstix_start.S	Sat Dec 29 14:22:55 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: gumstix_start.S,v 1.10 2012/09/01 14:52:35 matt Exp $ */
+/*	$NetBSD: gumstix_start.S,v 1.11 2012/12/29 14:22:55 kiyohara Exp $ */
 /*
  * Copyright (C) 2005, 2006 WIDE Project and SOUM Corporation.
  * All rights reserved.
@@ -66,7 +66,7 @@
 #include <arm/armreg.h>
 #include "assym.h"
 
-RCSID("$NetBSD: gumstix_start.S,v 1.10 2012/09/01 14:52:35 matt Exp $")
+RCSID("$NetBSD: gumstix_start.S,v 1.11 2012/12/29 14:22:55 kiyohara Exp $")
 
 /*
  * CPWAIT -- Canonical method to wait for CP15 update.
@@ -179,8 +179,8 @@ _C_LABEL(gumstix_start):
 	cmp	r1, #0
 	bne	4b
 
-	mcr	p15, 0, r0, c8, c7, 0	/* Flush TLB */
 	mcr	p15, 0, r0, c2, c0, 0	/* Set TTB */
+	mcr	p15, 0, r0, c8, c7, 0	/* Flush TLB */
 
 	/*
 	 * Set the Domain Access register.  Very important!

Reply via email to