aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mvp/mvpkm/monva_common.h
blob: de3dd1a01b3f464e206233e06eda0e4a8f83330c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
 * Linux 2.6.32 and later Kernel module for VMware MVP Hypervisor Support
 *
 * Copyright (C) 2010-2012 VMware, Inc. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; see the file COPYING.  If not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
#line 5

/**
 *  @file
 *
 *  @brief Constant definitions that describing the monitor memory layout
 *         (common to both LPV and VE monitors).
 *
 */

#ifndef _MONVA_COMMON_H_
#define _MONVA_COMMON_H_

#define INCLUDE_ALLOW_MVPD
#define INCLUDE_ALLOW_VMX
#define INCLUDE_ALLOW_MODULE
#define INCLUDE_ALLOW_MONITOR
#define INCLUDE_ALLOW_HOSTUSER
#define INCLUDE_ALLOW_GUESTUSER
#define INCLUDE_ALLOW_GPL
#include "include_check.h"

#include "mmu_defs.h"
#include "mmu_types.h"

/*
 * The monitor occupies a hole in the guest virtual address space.
 * The following macros define that hole.
 */

#define MONITOR_VA_START       ((MVA)0xE8000000)
#define MONITOR_VA_LEN         0x03000000

/*
 * Worldswitch page gets mapped right after the stack guard.
 */
#define MONITOR_VA_WORLDSWITCH \
   ((MVA)(MONITOR_VA_START + 3 * PAGE_SIZE))

#define MONITOR_VA_WORLDSWITCH_CODE \
   (MONITOR_VA_WORLDSWITCH + PAGE_SIZE)

#define MONITOR_VA_UART \
   (MONITOR_VA_WORLDSWITCH_CODE + PAGE_SIZE)

/**
 * @brief Type of physmem region mapping that we want the VMX to know about.
 *        Helps to identify Guest page allocations.
 */
typedef enum {
   MEMREGION_MAINMEM = 1,
   MEMREGION_MODULE = 2,
   MEMREGION_WSP = 3,
   MEMREGION_MONITOR_MISC = 4,
   MEMREGION_DEFAULT = 0
} PACKED PhysMem_RegionType;

typedef struct MonVA { /* Note that this struct is VE only */
   MA  l2BaseMA;       ///< MA of monitor L2 page table page
   MVA excVec;         ///< Monitor exception vector virtual address
} MonVA;

/**
 * @brief Monitor VA mapping type, device or memory.
 *
 * These values are used to index HMAIR0 in the VE monitor - do not change
 * without making the required update to HMAIR0.
 */
typedef enum {
   MVA_MEMORY = 0,
   MVA_DEVICE = 1
} MVAType;

/**
 * @name Monitor types, used in VMX, Mvpkm and monitors.
 *
 * This is not a C enumeration, as we may want to use the values in CPP macros.
 *
 * @{
 */
#define MONITOR_TYPE_LPV        0
#define MONITOR_TYPE_VE         1
#define MONITOR_TYPE_UNKNOWN  0xf

typedef uint32 MonitorType;
/*@}*/

#endif