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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
use ;
use Sif;
/// Xen HVM start magic value.
///
/// This is contained in [`StartInfo::magic`].
///
/// This corresponds to `start_info.h`'s `XEN_HVM_START_MAGIC_VALUE`.
pub const START_MAGIC_VALUE: u32 = 0x336e_c578;
/// A memory map type.
///
/// The values used in the type field of the memory map table entries are
/// defined below and match the Address Range Types as defined in the "System
/// Address Map Interfaces" section of the ACPI Specification.
///
/// For details, see [15. System Address Map Interfaces — ACPI Specification 6.6
/// documentation].
///
/// This corresponds to `start_info.h`'s `XEN_HVM_MEMMAP_TYPE_*`.
///
/// [15. System Address Map Interfaces — ACPI Specification 6.6 documentation]: https://uefi.org/specs/ACPI/6.6/15_System_Address_Map_Interfaces.html
/// Start of day structure passed to PVH guests and to HVM guests in `ebx`.
///
/// NOTE: nothing will be loaded at physical address 0, so a 0 value in any
/// of the address fields should be treated as not present.
///
/// ```text
/// 0 +----------------+
/// | magic | Contains the magic value XEN_HVM_START_MAGIC_VALUE
/// | | ("xEn3" with the 0x80 bit of the "E" set).
/// 4 +----------------+
/// | version | Version of this structure. Current version is 1. New
/// | | versions are guaranteed to be backwards-compatible.
/// 8 +----------------+
/// | flags | SIF_xxx flags.
/// 12 +----------------+
/// | nr_modules | Number of modules passed to the kernel.
/// 16 +----------------+
/// | modlist_paddr | Physical address of an array of modules
/// | | (layout of the structure below).
/// 24 +----------------+
/// | cmdline_paddr | Physical address of the command line,
/// | | a zero-terminated ASCII string.
/// 32 +----------------+
/// | rsdp_paddr | Physical address of the RSDP ACPI data structure.
/// 40 +----------------+
/// | memmap_paddr | Physical address of the (optional) memory map. Only
/// | | present in version 1 and newer of the structure.
/// 48 +----------------+
/// | memmap_entries | Number of entries in the memory map table. Zero
/// | | if there is no memory map being provided. Only
/// | | present in version 1 and newer of the structure.
/// 52 +----------------+
/// | reserved | Version 1 and newer only.
/// 56 +----------------+
/// ```
///
/// The address and sizes are always a 64bit little endian unsigned integer.
///
/// NB: Xen on x86 will always try to place all the data below the 4GiB
/// boundary.
///
/// Version numbers of the `hvm_start_info` structure have evolved like this:
///
/// Version 0: Initial implementation.
///
/// Version 1: Added the `memmap_paddr`/`memmap_entries` fields (plus 4 bytes
/// of padding) to the end of the `hvm_start_info` struct. These new
/// fields can be used to pass a memory map to the guest. The
/// memory map is optional and so guests that understand version 1
/// of the structure must check that `memmap_entries` is non-zero
/// before trying to read the memory map.
///
/// This corresponds to `start_info.h`'s `hvm_start_info`.
/// A module list entry.
///
/// The layout of each entry in the module structure is the following:
///
/// ```text
/// 0 +----------------+
/// | paddr | Physical address of the module.
/// 8 +----------------+
/// | size | Size of the module in bytes.
/// 16 +----------------+
/// | cmdline_paddr | Physical address of the command line,
/// | | a zero-terminated ASCII string.
/// 24 +----------------+
/// | reserved |
/// 32 +----------------+
/// ```
///
/// This corresponds to `start_info.h`'s `hvm_modlist_entry`.
/// A memory map table entry.
///
/// The layout of each entry in the memory map table is as follows:
///
/// ```text
/// 0 +----------------+
/// | addr | Base address
/// 8 +----------------+
/// | size | Size of mapping in bytes
/// 16 +----------------+
/// | type | Type of mapping as defined between the hypervisor
/// | | and guest. See XEN_HVM_MEMMAP_TYPE_* values below.
/// 20 +----------------|
/// | reserved |
/// 24 +----------------+
/// ```
///
/// This corresponds to `start_info.h`'s `hvm_memmap_table_entry`.