Add CVS ids, and rename the PTE bits. No functional change.
This commit is contained in:
parent
6f25a72094
commit
db0dfdd0c2
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: h_io_assist.c,v 1.4 2019/03/19 19:23:39 maxv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2018 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
|
@ -183,11 +185,11 @@ map_pages(struct nvmm_machine *mach)
|
|||
memset(L2, 0, PAGE_SIZE);
|
||||
memset(L1, 0, PAGE_SIZE);
|
||||
|
||||
L4[0] = PG_V | PG_RW | 0x4000;
|
||||
L3[0] = PG_V | PG_RW | 0x5000;
|
||||
L2[0] = PG_V | PG_RW | 0x6000;
|
||||
L1[0x2000 / PAGE_SIZE] = PG_V | PG_RW | 0x2000;
|
||||
L1[0x1000 / PAGE_SIZE] = PG_V | PG_RW | 0x1000;
|
||||
L4[0] = PTE_P | PTE_W | 0x4000;
|
||||
L3[0] = PTE_P | PTE_W | 0x5000;
|
||||
L2[0] = PTE_P | PTE_W | 0x6000;
|
||||
L1[0x2000 / PAGE_SIZE] = PTE_P | PTE_W | 0x2000;
|
||||
L1[0x1000 / PAGE_SIZE] = PTE_P | PTE_W | 0x1000;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: h_io_assist_asm.S,v 1.2 2019/03/19 19:23:39 maxv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2019 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: h_mem_assist.c,v 1.7 2019/03/19 19:23:39 maxv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2018 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
|
@ -172,11 +174,11 @@ map_pages(struct nvmm_machine *mach)
|
|||
memset(L2, 0, PAGE_SIZE);
|
||||
memset(L1, 0, PAGE_SIZE);
|
||||
|
||||
L4[0] = PG_V | PG_RW | 0x4000;
|
||||
L3[0] = PG_V | PG_RW | 0x5000;
|
||||
L2[0] = PG_V | PG_RW | 0x6000;
|
||||
L1[0x2000 / PAGE_SIZE] = PG_V | PG_RW | 0x2000;
|
||||
L1[0x1000 / PAGE_SIZE] = PG_V | PG_RW | 0x1000;
|
||||
L4[0] = PTE_P | PTE_W | 0x4000;
|
||||
L3[0] = PTE_P | PTE_W | 0x5000;
|
||||
L2[0] = PTE_P | PTE_W | 0x6000;
|
||||
L1[0x2000 / PAGE_SIZE] = PTE_P | PTE_W | 0x2000;
|
||||
L1[0x1000 / PAGE_SIZE] = PTE_P | PTE_W | 0x1000;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: h_mem_assist_asm.S,v 1.6 2019/03/19 19:23:39 maxv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2018 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
|
|
Loading…
Reference in New Issue