Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/sys/arch/arm/arm32 Pull up following revision(s) (request...
details: https://anonhg.NetBSD.org/src/rev/af9054646616
branches: netbsd-7
changeset: 800224:af9054646616
user: snj <snj%NetBSD.org@localhost>
date: Sat Jun 03 17:01:30 2017 +0000
description:
Pull up following revision(s) (requested by skrll in ticket #1424):
sys/arch/arm/arm32/pmap.c: revision 1.345
Perform icache syncs for ARM_MMU_EXTENDED as well. This helps the PT_STEP
code in pr/52119 and probably other things.
diffstat:
sys/arch/arm/arm32/pmap.c | 44 ++++++++++++++++++--------------------------
1 files changed, 18 insertions(+), 26 deletions(-)
diffs (181 lines):
diff -r 6eb4b5b0a9e9 -r af9054646616 sys/arch/arm/arm32/pmap.c
--- a/sys/arch/arm/arm32/pmap.c Sat Jun 03 16:58:01 2017 +0000
+++ b/sys/arch/arm/arm32/pmap.c Sat Jun 03 17:01:30 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.c,v 1.295.2.10 2017/03/11 16:03:54 snj Exp $ */
+/* $NetBSD: pmap.c,v 1.295.2.11 2017/06/03 17:01:30 snj Exp $ */
/*
* Copyright 2003 Wasabi Systems, Inc.
@@ -217,7 +217,7 @@
#include <arm/locore.h>
//#include <arm/arm32/katelib.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.295.2.10 2017/03/11 16:03:54 snj Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.295.2.11 2017/06/03 17:01:30 snj Exp $");
//#define PMAP_DEBUG
#ifdef PMAP_DEBUG
@@ -424,13 +424,13 @@
PMAP_EVCNT_INITIALIZER("exec pages synced");
static struct evcnt pmap_ev_exec_synced_map =
PMAP_EVCNT_INITIALIZER("exec pages synced (MP)");
-#ifndef ARM_MMU_EXTENDED
static struct evcnt pmap_ev_exec_synced_unmap =
PMAP_EVCNT_INITIALIZER("exec pages synced (UM)");
static struct evcnt pmap_ev_exec_synced_remap =
PMAP_EVCNT_INITIALIZER("exec pages synced (RM)");
static struct evcnt pmap_ev_exec_synced_clearbit =
PMAP_EVCNT_INITIALIZER("exec pages synced (DG)");
+#ifndef ARM_MMU_EXTENDED
static struct evcnt pmap_ev_exec_synced_kremove =
PMAP_EVCNT_INITIALIZER("exec pages synced (KU)");
#endif
@@ -1066,12 +1066,10 @@
* for this page, make sure to sync the I-cache.
*/
if (PV_IS_EXEC_P(flags)) {
-#ifndef ARM_MMU_EXTENDED
if (!PV_IS_EXEC_P(md->pvh_attrs)) {
pmap_syncicache_page(md, pa);
PMAPCOUNT(exec_synced_map);
}
-#endif
PMAPCOUNT(exec_mappings);
}
#endif
@@ -1145,26 +1143,19 @@
PMAPCOUNT(unmappings);
#ifdef PMAP_CACHE_VIPT
- if (!(pv->pv_flags & PVF_WRITE))
- break;
/*
* If this page has had an exec mapping, then if
* this was the last mapping, discard the contents,
* otherwise sync the i-cache for this page.
*/
if (PV_IS_EXEC_P(md->pvh_attrs)) {
-#ifdef ARM_MMU_EXTENDED
- md->pvh_attrs &= ~PVF_EXEC;
- PMAPCOUNT(exec_discarded_unmap);
-#else
if (SLIST_EMPTY(&md->pvh_list)) {
md->pvh_attrs &= ~PVF_EXEC;
PMAPCOUNT(exec_discarded_unmap);
- } else {
+ } else if (pv->pv_flags & PVF_WRITE) {
pmap_syncicache_page(md, pa);
PMAPCOUNT(exec_synced_unmap);
}
-#endif /* ARM_MMU_EXTENDED */
}
#endif /* PMAP_CACHE_VIPT */
break;
@@ -1276,7 +1267,6 @@
md->pvh_attrs |= PVF_WRITE;
}
}
-#ifndef ARM_MMU_EXTENDED
/*
* We have two cases here: the first is from enter_pv (new exec
* page), the second is a combined pmap_remove_pv/pmap_enter_pv.
@@ -1289,6 +1279,7 @@
pmap_syncicache_page(md, pa);
PMAPCOUNT(exec_synced_remap);
}
+#ifndef ARM_MMU_EXTENDED
KASSERT((md->pvh_attrs & PVF_DMOD) == 0 || (md->pvh_attrs & (PVF_DIRTY|PVF_NC)));
#endif /* !ARM_MMU_EXTENDED */
#endif /* PMAP_CACHE_VIPT */
@@ -2338,12 +2329,12 @@
struct pv_entry *pv;
#ifdef PMAP_CACHE_VIPT
const bool want_syncicache = PV_IS_EXEC_P(md->pvh_attrs);
+ bool need_syncicache = false;
#ifdef ARM_MMU_EXTENDED
const u_int execbits = (maskbits & PVF_EXEC) ? L2_XS_XN : 0;
#else
const u_int execbits = 0;
bool need_vac_me_harder = false;
- bool need_syncicache = false;
#endif
#else
const u_int execbits = 0;
@@ -2359,12 +2350,9 @@
* then we know we definitely need to sync or discard it.
*/
if (want_syncicache) {
-#ifdef ARM_MMU_EXTENDED
- if (md->pvh_attrs & PVF_MOD)
- md->pvh_attrs &= ~PVF_EXEC;
-#else
- need_syncicache = md->pvh_attrs & PVF_MOD;
-#endif
+ if (md->pvh_attrs & PVF_MOD) {
+ need_syncicache = true;
+ }
}
#endif
KASSERT(pmap_page_locked_p(md));
@@ -2375,7 +2363,7 @@
md->pvh_attrs &= ~(maskbits & (PVF_MOD | PVF_REF));
if (SLIST_EMPTY(&md->pvh_list)) {
-#if defined(PMAP_CACHE_VIPT) && !defined(ARM_MMU_EXTENDED)
+#if defined(PMAP_CACHE_VIPT)
if (need_syncicache) {
/*
* No one has it mapped, so just discard it. The next
@@ -2484,9 +2472,9 @@
PMAP_VALIDATE_MD_PAGE(md);
}
}
-#ifndef ARM_MMU_EXTENDED
if (want_syncicache)
need_syncicache = true;
+#ifndef ARM_MMU_EXTENDED
need_vac_me_harder = true;
#endif
#endif /* PMAP_CACHE_VIPT */
@@ -2540,7 +2528,7 @@
pm, va, opte, npte));
}
-#if defined(PMAP_CACHE_VIPT) && !defined(ARM_MMU_EXTENDED)
+#if defined(PMAP_CACHE_VIPT)
/*
* If we need to sync the I-cache and we haven't done it yet, do it.
*/
@@ -2550,7 +2538,7 @@
pmap_acquire_page_lock(md);
PMAPCOUNT(exec_synced_clearbit);
}
-
+#ifndef ARM_MMU_EXTENDED
/*
* If we are changing this to read-only, we need to call vac_me_harder
* so we can change all the read-only pages to cacheable. We pretend
@@ -2560,7 +2548,8 @@
if (md->pvh_attrs & PVF_NC)
pmap_vac_me_harder(md, pa, NULL, 0);
}
-#endif /* PMAP_CACHE_VIPT && !ARM_MMU_EXTENDED */
+#endif /* !ARM_MMU_EXTENDED */
+#endif /* PMAP_CACHE_VIPT */
}
/*
@@ -4707,9 +4696,12 @@
void
pmap_procwr(struct proc *p, vaddr_t va, int len)
{
+#ifndef ARM_MMU_EXTENDED
+
/* We only need to do anything if it is the current process. */
if (p == curproc)
cpu_icache_sync_range(va, len);
+#endif
}
/*
Home |
Main Index |
Thread Index |
Old Index