1 | /* $Id: bs3-cmn-PagingInitRootForPP.c 59941 2016-03-07 15:13:51Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * BS3Kit - Bs3PagingInitRootForPP
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2007-2015 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | /*********************************************************************************************************************************
|
---|
28 | * Header Files *
|
---|
29 | *********************************************************************************************************************************/
|
---|
30 | #include "bs3kit-template-header.h"
|
---|
31 | #include "bs3-cmn-paging.h"
|
---|
32 |
|
---|
33 |
|
---|
34 | BS3_DECL(int) Bs3PagingInitRootForPP(void)
|
---|
35 | {
|
---|
36 | X86PD BS3_FAR *pPgDir;
|
---|
37 |
|
---|
38 | BS3_ASSERT(BS3_DATA_NM(g_PhysPagingRootPP) == UINT32_MAX);
|
---|
39 |
|
---|
40 |
|
---|
41 | /*
|
---|
42 | * By default we do a identity mapping of the entire address space
|
---|
43 | * using 4 GB pages. So, we only really need one page directory,
|
---|
44 | * that's all.
|
---|
45 | *
|
---|
46 | * ASSUMES page size extension available, i.e. pentium+.
|
---|
47 | */
|
---|
48 | pPgDir = (X86PD BS3_FAR *)Bs3MemAlloc(BS3MEMKIND_TILED, _4K);
|
---|
49 | if (pPgDir)
|
---|
50 | {
|
---|
51 | BS3_XPTR_AUTO(X86PD, XptrPgDir);
|
---|
52 | unsigned i;
|
---|
53 |
|
---|
54 | for (i = 0; i < RT_ELEMENTS(pPgDir->a); i++)
|
---|
55 | {
|
---|
56 | pPgDir->a[i].u = (uint32_t)i << X86_PD_SHIFT;
|
---|
57 | pPgDir->a[i].u |= X86_PDE4M_P | X86_PDE4M_RW | X86_PDE4M_US | X86_PDE4M_PS | X86_PDE4M_A | X86_PDE4M_D;
|
---|
58 | }
|
---|
59 |
|
---|
60 | BS3_XPTR_SET(X86PD, XptrPgDir, pPgDir);
|
---|
61 | BS3_DATA_NM(g_PhysPagingRootPP) = BS3_XPTR_GET_FLAT(X86PD, XptrPgDir);
|
---|
62 | return VINF_SUCCESS;
|
---|
63 | }
|
---|
64 |
|
---|
65 | BS3_ASSERT(false);
|
---|
66 | return VERR_NO_MEMORY;
|
---|
67 | }
|
---|
68 |
|
---|