1 | /** @file
|
---|
2 | * VirtualBox Parameter Definitions.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___VBox_param_h
|
---|
27 | #define ___VBox_param_h
|
---|
28 |
|
---|
29 | #include <iprt/param.h>
|
---|
30 |
|
---|
31 |
|
---|
32 | /** @defgroup grp_vbox_param VBox Parameter Definition
|
---|
33 | * @{
|
---|
34 | */
|
---|
35 |
|
---|
36 |
|
---|
37 | /** @defgroup grp_vbox_param_mm Memory Monitor Parameters
|
---|
38 | * @ingroup grp_vbox_param
|
---|
39 | * @{
|
---|
40 | */
|
---|
41 |
|
---|
42 | /** Initial address of Hypervisor Memory Area.
|
---|
43 | * MUST BE PAGE TABLE ALIGNED! */
|
---|
44 | #define MM_HYPER_AREA_ADDRESS 0xa0000000
|
---|
45 |
|
---|
46 | /** The max size of the hypervisor memory area. */
|
---|
47 | #define MM_HYPER_AREA_MAX_SIZE (16*1024*1024)
|
---|
48 |
|
---|
49 | /** Maximum number of bytes we can dynamically map into the hypervisor region.
|
---|
50 | * This must be a power of 2 number of pages!
|
---|
51 | */
|
---|
52 | #define MM_HYPER_DYNAMIC_SIZE (8 * PAGE_SIZE)
|
---|
53 |
|
---|
54 | /** @} */
|
---|
55 |
|
---|
56 |
|
---|
57 | /** @defgroup grp_vbox_param_vmm VMM Parameters
|
---|
58 | * @ingroup grp_vbox_param
|
---|
59 | * @{
|
---|
60 | */
|
---|
61 |
|
---|
62 | /** VMM stack size. */
|
---|
63 | #define VMM_STACK_SIZE 8192
|
---|
64 |
|
---|
65 | /** @} */
|
---|
66 |
|
---|
67 |
|
---|
68 | /** @} */
|
---|
69 |
|
---|
70 | #endif
|
---|
71 |
|
---|