VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PagingInitRootForPAE.c@ 60009

Last change on this file since 60009 was 59941, checked in by vboxsync, 9 years ago

bs3kit: Updates and fixes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
1/* $Id: bs3-cmn-PagingInitRootForPAE.c 59941 2016-03-07 15:13:51Z vboxsync $ */
2/** @file
3 * BS3Kit - Bs3PagingInitRootForPAE
4 */
5
6/*
7 * Copyright (C) 2007-2016 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
34BS3_DECL(int) Bs3PagingInitRootForPAE(void)
35{
36 X86PDPT BS3_FAR *pPdPtr;
37
38 BS3_ASSERT(BS3_DATA_NM(g_PhysPagingRootPAE) == UINT32_MAX);
39
40 /*
41 * By default we do a identity mapping of the entire address space
42 * using 2 GB pages. So, we need four page directories and one page
43 * directory pointer table with 4 entries. (We cannot share the PDPT with
44 * long mode because of reserved bit which will cause fatal trouble.)
45 *
46 * We assume that the availability of PAE means that PSE is available too.
47 */
48/** @todo testcase: loading invalid PDPTREs will tripple fault the CPU, won't it? We guru with invalid guest state. */
49 pPdPtr = (X86PDPT BS3_FAR *)Bs3MemAlloc(BS3MEMKIND_TILED, sizeof(X86PDPE) * 4U);
50 if (pPdPtr)
51 {
52 X86PDPAE BS3_FAR *paPgDirs;
53 BS3_ASSERT(((uintptr_t)pPdPtr & 0x3f) == 0);
54
55 paPgDirs = (X86PDPAE BS3_FAR *)Bs3MemAlloc(BS3MEMKIND_TILED, _4K * 4U);
56 if (paPgDirs)
57 {
58 unsigned i;
59 BS3_XPTR_AUTO(X86PDPT, XPtrPdPtr);
60 BS3_XPTR_AUTO(X86PDPAE, XPtrPgDirs);
61
62 /* Set up the 2048 2MB pages first. */
63 for (i = 0; i < RT_ELEMENTS(paPgDirs->a) * 4U; i++)
64 paPgDirs->a[i].u = ((uint32_t)i << X86_PD_PAE_SHIFT)
65 | X86_PDE4M_P | X86_PDE4M_RW | X86_PDE4M_US | X86_PDE4M_PS | X86_PDE4M_A | X86_PDE4M_D;
66
67 /* Set up the four page directory pointer table entries. */
68 BS3_XPTR_SET(X86PDPAE, XPtrPgDirs, paPgDirs);
69 pPdPtr->a[0].u = BS3_XPTR_GET_FLAT(X86PDPAE, XPtrPgDirs) | X86_PDPE_P;
70 pPdPtr->a[1].u = pPdPtr->a[0].u + _4K;
71 pPdPtr->a[2].u = pPdPtr->a[1].u + _4K;
72 pPdPtr->a[3].u = pPdPtr->a[2].u + _4K;
73
74 /* Set the global root pointer and we're done. */
75 BS3_XPTR_SET(X86PDPT, XPtrPdPtr, pPdPtr);
76 BS3_DATA_NM(g_PhysPagingRootPAE) = BS3_XPTR_GET_FLAT(X86PDPT, XPtrPdPtr);
77 return VINF_SUCCESS;
78 }
79 BS3_ASSERT(false);
80 Bs3MemFree(pPdPtr, _4K);
81 }
82 BS3_ASSERT(false);
83 return VERR_NO_MEMORY;
84}
85
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette