blob: d31ecc9eec93738198f3c6e474b812147d53dfc8 (
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
|
/** @file
Various defines related to Cloud Hypervisor
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef __CLOUDHV_H__
#define __CLOUDHV_H__
//
// Host Bridge Device ID
//
#define CLOUDHV_DEVICE_ID 0x0d57
//
// ACPI timer address
//
#define CLOUDHV_ACPI_TIMER_IO_ADDRESS 0xb008
//
// ACPI shutdown device address
//
#define CLOUDHV_ACPI_SHUTDOWN_IO_ADDRESS 0x03c0
//
// 32-bit MMIO memory hole base address
//
#define CLOUDHV_MMIO_HOLE_ADDRESS 0xc0000000
//
// 32-bit MMIO memory hole size
//
#define CLOUDHV_MMIO_HOLE_SIZE 0x38000000
//
// SMBIOS address
//
#define CLOUDHV_SMBIOS_ADDRESS 0xf0000
#endif // __CLOUDHV_H__
|