1 | /** @file
|
---|
2 | * VirtualBox Parameter Definitions.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006 InnoTek Systemberatung 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 as published by the Free Software Foundation,
|
---|
12 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * If you received this file as part of a commercial VirtualBox
|
---|
17 | * distribution, then only the terms of your commercial VirtualBox
|
---|
18 | * license agreement apply instead of the previous paragraph.
|
---|
19 | */
|
---|
20 |
|
---|
21 | #ifndef __VBox_param_h__
|
---|
22 | #define __VBox_param_h__
|
---|
23 |
|
---|
24 | #include <iprt/param.h>
|
---|
25 |
|
---|
26 |
|
---|
27 | /** @defgroup grp_vbox_param VBox Parameter Definition
|
---|
28 | * @{
|
---|
29 | */
|
---|
30 |
|
---|
31 |
|
---|
32 | /** @defgroup grp_vbox_param_mm Memory Monitor Parameters
|
---|
33 | * @ingroup grp_vbox_param
|
---|
34 | * @{
|
---|
35 | */
|
---|
36 |
|
---|
37 | /** Initial address of Hypervisor Memory Area.
|
---|
38 | * MUST BE PAGE TABLE ALIGNED! */
|
---|
39 | #define MM_HYPER_AREA_ADDRESS 0xa0000000
|
---|
40 |
|
---|
41 | /** The max size of the hypervisor memory area. */
|
---|
42 | #define MM_HYPER_AREA_MAX_SIZE (12*1024*1024)
|
---|
43 |
|
---|
44 | /** Maximum number of bytes we can dynamically map into the hypervisor region.
|
---|
45 | * This must be a power of 2 number of pages!
|
---|
46 | */
|
---|
47 | #define MM_HYPER_DYNAMIC_SIZE (8 * PAGE_SIZE)
|
---|
48 |
|
---|
49 | /** @} */
|
---|
50 |
|
---|
51 |
|
---|
52 | /** @defgroup grp_vbox_param_vmm VMM Parameters
|
---|
53 | * @ingroup grp_vbox_param
|
---|
54 | * @{
|
---|
55 | */
|
---|
56 |
|
---|
57 | /** VMM stack size. */
|
---|
58 | #define VMM_STACK_SIZE 8192
|
---|
59 |
|
---|
60 | /** @} */
|
---|
61 |
|
---|
62 |
|
---|
63 | /** @} */
|
---|
64 |
|
---|
65 | #endif
|
---|
66 |
|
---|