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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
|
/* $Id: VBoxAcpi.cpp $ */
/** @file
* VBoxAcpi - VirtualBox ACPI manipulation functionality.
*/
/*
* Copyright (C) 2009-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
/*********************************************************************************************************************************
* Header Files *
*********************************************************************************************************************************/
#include <iprt/cdefs.h>
#if !defined(IN_RING3)
# error Pure R3 code
#endif
#define LOG_GROUP LOG_GROUP_DEV_ACPI
#include <VBox/vmm/pdmdev.h>
#include <VBox/vmm/pgm.h>
#include <VBox/log.h>
#include <VBox/param.h>
#include <VBox/vmm/cfgm.h>
#include <VBox/vmm/mm.h>
#include <iprt/assert.h>
#include <iprt/alloc.h>
#include <iprt/string.h>
#include <iprt/file.h>
#ifdef VBOX_WITH_DYNAMIC_DSDT
/* vbox.dsl - input to generate proper DSDT on the fly */
# include <vboxdsl.hex>
#else
/* Statically compiled AML */
# include <vboxaml.hex>
# include <vboxssdt_standard.hex>
# include <vboxssdt_cpuhotplug.hex>
#endif
#include "VBoxDD.h"
#ifdef VBOX_WITH_DYNAMIC_DSDT
static int prepareDynamicDsdt(PPDMDEVINS pDevIns, void **ppvPtr, size_t *pcbDsdt)
{
*ppvPtr = NULL;
*pcbDsdt = 0;
return 0;
}
static int cleanupDynamicDsdt(PPDMDEVINS pDevIns, void *pvPtr)
{
return 0;
}
#else /* VBOX_WITH_DYNAMIC_DSDT */
static int patchAml(PPDMDEVINS pDevIns, uint8_t *pabAml, size_t cbAml)
{
uint16_t cNumCpus;
int rc;
rc = CFGMR3QueryU16Def(pDevIns->pCfg, "NumCPUs", &cNumCpus, 1);
if (RT_FAILURE(rc))
return rc;
/* Clear CPU objects at all, if needed */
bool fShowCpu;
rc = CFGMR3QueryBoolDef(pDevIns->pCfg, "ShowCpu", &fShowCpu, false);
if (RT_FAILURE(rc))
return rc;
if (!fShowCpu)
cNumCpus = 0;
/**
* Now search AML for:
* AML_PROCESSOR_OP (UINT16) 0x5b83
* and replace whole block with
* AML_NOOP_OP (UINT16) 0xa3
* for VCPU not configured
*/
for (uint32_t i = 0; i < cbAml - 7; i++)
{
/*
* AML_PROCESSOR_OP
*
* DefProcessor := ProcessorOp PkgLength NameString ProcID
PblkAddr PblkLen ObjectList
* ProcessorOp := ExtOpPrefix 0x83
* ProcID := ByteData
* PblkAddr := DwordData
* PblkLen := ByteData
*/
if (pabAml[i] == 0x5b && pabAml[i+1] == 0x83)
{
if (pabAml[i+3] != 'C' || pabAml[i+4] != 'P')
/* false alarm, not named starting CP */
continue;
/* Processor ID */
if (pabAml[i+7] < cNumCpus)
continue;
/* Will fill unwanted CPU block with NOOPs */
/*
* See 18.2.4 Package Length Encoding in ACPI spec
* for full format
*/
uint32_t cBytes = pabAml[i + 2];
AssertReleaseMsg((cBytes >> 6) == 0,
("So far, we only understand simple package length"));
/* including AML_PROCESSOR_OP itself */
for (uint32_t j = 0; j < cBytes + 2; j++)
pabAml[i+j] = 0xa3;
/* Can increase i by cBytes + 1, but not really worth it */
}
}
/* now recompute checksum, whole file byte sum must be 0 */
pabAml[9] = 0;
uint8_t bSum = 0;
for (uint32_t i = 0; i < cbAml; i++)
bSum = bSum + pabAml[i];
pabAml[9] = (uint8_t)(0 - bSum);
return 0;
}
/**
* Patch the CPU hot-plug SSDT version to
* only contain the ACPI containers which may have a CPU
*/
static int patchAmlCpuHotPlug(PPDMDEVINS pDevIns, uint8_t *pabAml, size_t cbAml)
{
uint16_t cNumCpus;
int rc;
uint32_t idxAml = 0;
rc = CFGMR3QueryU16Def(pDevIns->pCfg, "NumCPUs", &cNumCpus, 1);
if (RT_FAILURE(rc))
return rc;
/**
* Now search AML for:
* AML_DEVICE_OP (UINT16) 0x5b82
* and replace whole block with
* AML_NOOP_OP (UINT16) 0xa3
* for VCPU not configured
*/
while (idxAml < cbAml - 7)
{
/*
* AML_DEVICE_OP
*
* DefDevice := DeviceOp PkgLength NameString ObjectList
* DeviceOp := ExtOpPrefix 0x82
*/
if (pabAml[idxAml] == 0x5b && pabAml[idxAml+1] == 0x82)
{
/* Check if the enclosed CPU device is configured. */
uint8_t *pabAmlPkgLength = &pabAml[idxAml+2];
uint32_t cBytes = 0;
uint32_t cLengthBytesFollow = pabAmlPkgLength[0] >> 6;
if (cLengthBytesFollow == 0)
{
/* Simple package length */
cBytes = pabAmlPkgLength[0];
}
else
{
unsigned idxLengthByte = 1;
cBytes = pabAmlPkgLength[0] & 0xF;
while (idxLengthByte <= cLengthBytesFollow)
{
cBytes |= pabAmlPkgLength[idxLengthByte] << (4*idxLengthByte);
idxLengthByte++;
}
}
uint8_t *pabAmlDevName = &pabAmlPkgLength[cLengthBytesFollow+1];
uint8_t *pabAmlCpu = &pabAmlDevName[4];
bool fCpuConfigured = false;
bool fCpuFound = false;
if ((pabAmlDevName[0] != 'S') || (pabAmlDevName[1] != 'C') || (pabAmlDevName[2] != 'K'))
{
/* false alarm, not named starting SCK */
idxAml++;
continue;
}
for (uint32_t idxAmlCpu = 0; idxAmlCpu < cBytes - 7; idxAmlCpu++)
{
/*
* AML_PROCESSOR_OP
*
* DefProcessor := ProcessorOp PkgLength NameString ProcID
PblkAddr PblkLen ObjectList
* ProcessorOp := ExtOpPrefix 0x83
* ProcID := ByteData
* PblkAddr := DwordData
* PblkLen := ByteData
*/
if ((pabAmlCpu[idxAmlCpu] == 0x5b) && (pabAmlCpu[idxAmlCpu+1] == 0x83))
{
if ((pabAmlCpu[idxAmlCpu+4] != 'C') || (pabAmlCpu[idxAmlCpu+5] != 'P'))
/* false alarm, not named starting CP */
continue;
fCpuFound = true;
/* Processor ID */
uint8_t const idAmlCpu = pabAmlCpu[idxAmlCpu + 8];
if (idAmlCpu < cNumCpus)
{
LogFlow(("CPU %u is configured\n", idAmlCpu));
fCpuConfigured = true;
}
else
{
LogFlow(("CPU %u is not configured\n", idAmlCpu));
fCpuConfigured = false;
}
break;
}
}
Assert(fCpuFound);
if (!fCpuConfigured)
{
/* Will fill unwanted CPU block with NOOPs */
/*
* See 18.2.4 Package Length Encoding in ACPI spec
* for full format
*/
/* including AML_DEVICE_OP itself */
for (uint32_t j = 0; j < cBytes + 2; j++)
pabAml[idxAml+j] = 0xa3;
}
idxAml++;
}
else
idxAml++;
}
/* now recompute checksum, whole file byte sum must be 0 */
pabAml[9] = 0;
uint8_t bSum = 0;
for (uint32_t i = 0; i < cbAml; i++)
bSum = bSum + pabAml[i];
pabAml[9] = (uint8_t)(0 - bSum);
return 0;
}
#endif /* VBOX_WITH_DYNAMIC_DSDT */
/**
* Loads an AML file if present in CFGM
*
* @returns VBox status code
* @param pDevIns The device instance
* @param pcszCfgName The configuration key holding the file path
* @param pcszSignature The signature to check for
* @param ppabAmlCode Where to store the pointer to the AML code on success.
* @param pcbAmlCode Where to store the number of bytes of the AML code on success.
*/
static int acpiAmlLoadExternal(PPDMDEVINS pDevIns, const char *pcszCfgName, const char *pcszSignature, uint8_t **ppabAmlCode, size_t *pcbAmlCode)
{
uint8_t *pabAmlCode = NULL;
size_t cbAmlCode = 0;
char *pszAmlFilePath = NULL;
int rc = CFGMR3QueryStringAlloc(pDevIns->pCfg, pcszCfgName, &pszAmlFilePath);
if (RT_SUCCESS(rc))
{
/* Load from file. */
RTFILE FileAml = NIL_RTFILE;
rc = RTFileOpen(&FileAml, pszAmlFilePath, RTFILE_O_OPEN | RTFILE_O_READ | RTFILE_O_DENY_NONE);
if (RT_SUCCESS(rc))
{
/*
* An AML file contains the raw DSDT thus the size of the file
* is equal to the size of the DSDT.
*/
uint64_t cbAmlFile = 0;
rc = RTFileGetSize(FileAml, &cbAmlFile);
cbAmlCode = (size_t)cbAmlFile;
/* Don't use AML files over 4GB ;) */
if ( RT_SUCCESS(rc)
&& ((uint64_t)cbAmlCode == cbAmlFile))
{
pabAmlCode = (uint8_t *)RTMemAllocZ(cbAmlCode);
if (pabAmlCode)
{
rc = RTFileReadAt(FileAml, 0, pabAmlCode, cbAmlCode, NULL);
/*
* We fail if reading failed or the identifier at the
* beginning is wrong.
*/
if ( RT_FAILURE(rc)
|| strncmp((const char *)pabAmlCode, pcszSignature, 4))
{
RTMemFree(pabAmlCode);
pabAmlCode = NULL;
/* Return error if file header check failed */
if (RT_SUCCESS(rc))
rc = VERR_PARSE_ERROR;
}
else
{
*ppabAmlCode = pabAmlCode;
*pcbAmlCode = cbAmlCode;
rc = VINF_SUCCESS;
}
}
else
rc = VERR_NO_MEMORY;
}
RTFileClose(FileAml);
}
MMR3HeapFree(pszAmlFilePath);
}
return rc;
}
/** No docs, lazy coder. */
int acpiPrepareDsdt(PPDMDEVINS pDevIns, void **ppvPtr, size_t *pcbDsdt)
{
#ifdef VBOX_WITH_DYNAMIC_DSDT
return prepareDynamicDsdt(pDevIns, ppvPtr, pcbDsdt);
#else
uint8_t *pabAmlCodeDsdt = NULL;
size_t cbAmlCodeDsdt = 0;
int rc = acpiAmlLoadExternal(pDevIns, "DsdtFilePath", "DSDT", &pabAmlCodeDsdt, &cbAmlCodeDsdt);
if (rc == VERR_CFGM_VALUE_NOT_FOUND)
{
rc = VINF_SUCCESS;
/* Use the compiled in AML code */
cbAmlCodeDsdt = sizeof(AmlCode);
pabAmlCodeDsdt = (uint8_t *)RTMemAllocZ(cbAmlCodeDsdt);
if (pabAmlCodeDsdt)
memcpy(pabAmlCodeDsdt, AmlCode, cbAmlCodeDsdt);
else
rc = VERR_NO_MEMORY;
}
else if (RT_FAILURE(rc))
return PDMDEV_SET_ERROR(pDevIns, rc,
N_("Configuration error: Failed to read \"DsdtFilePath\""));
if (RT_SUCCESS(rc))
{
patchAml(pDevIns, pabAmlCodeDsdt, cbAmlCodeDsdt);
*ppvPtr = pabAmlCodeDsdt;
*pcbDsdt = cbAmlCodeDsdt;
}
return rc;
#endif
}
/** No docs, lazy coder. */
int acpiCleanupDsdt(PPDMDEVINS pDevIns, void *pvPtr)
{
#ifdef VBOX_WITH_DYNAMIC_DSDT
return cleanupDynamicDsdt(pDevIns, pvPtr);
#else
RT_NOREF1(pDevIns);
if (pvPtr)
RTMemFree(pvPtr);
return VINF_SUCCESS;
#endif
}
/** No docs, lazy coder. */
int acpiPrepareSsdt(PPDMDEVINS pDevIns, void **ppvPtr, size_t *pcbSsdt)
{
uint8_t *pabAmlCodeSsdt = NULL;
size_t cbAmlCodeSsdt = 0;
int rc = acpiAmlLoadExternal(pDevIns, "SsdtFilePath", "SSDT", &pabAmlCodeSsdt, &cbAmlCodeSsdt);
if (rc == VERR_CFGM_VALUE_NOT_FOUND)
{
bool fCpuHotPlug = false;
uint8_t *pabAmlCode = NULL;
rc = CFGMR3QueryBoolDef(pDevIns->pCfg, "CpuHotPlug", &fCpuHotPlug, false);
if (RT_FAILURE(rc))
return rc;
if (fCpuHotPlug)
{
pabAmlCode = AmlCodeSsdtCpuHotPlug;
cbAmlCodeSsdt = sizeof(AmlCodeSsdtCpuHotPlug);
}
else
{
pabAmlCode = AmlCodeSsdtStandard;
cbAmlCodeSsdt = sizeof(AmlCodeSsdtStandard);
}
pabAmlCodeSsdt = (uint8_t *)RTMemAllocZ(cbAmlCodeSsdt);
if (pabAmlCodeSsdt)
{
memcpy(pabAmlCodeSsdt, pabAmlCode, cbAmlCodeSsdt);
if (fCpuHotPlug)
patchAmlCpuHotPlug(pDevIns, pabAmlCodeSsdt, cbAmlCodeSsdt);
else
patchAml(pDevIns, pabAmlCodeSsdt, cbAmlCodeSsdt);
}
else
rc = VERR_NO_MEMORY;
}
else if (RT_FAILURE(rc))
return PDMDEV_SET_ERROR(pDevIns, rc,
N_("Configuration error: Failed to read \"SsdtFilePath\""));
if (RT_SUCCESS(rc))
{
*ppvPtr = pabAmlCodeSsdt;
*pcbSsdt = cbAmlCodeSsdt;
}
return VINF_SUCCESS;
}
/** No docs, lazy coder. */
int acpiCleanupSsdt(PPDMDEVINS pDevIns, void *pvPtr)
{
RT_NOREF1(pDevIns);
if (pvPtr)
RTMemFree(pvPtr);
return VINF_SUCCESS;
}
|