Lines Matching +full:memory +full:- +full:map
1 /* SPDX-License-Identifier: MIT */
15 * 0 +----------------+
18 * 4 +----------------+
20 * | | versions are guaranteed to be backwards-compatible.
21 * 8 +----------------+
23 * 12 +----------------+
25 * 16 +----------------+
28 * 24 +----------------+
30 * | | a zero-terminated ASCII string.
31 * 32 +----------------+
33 * 40 +----------------+
34 * | memmap_paddr | Physical address of the (optional) memory map. Only
36 * 48 +----------------+
37 * | memmap_entries | Number of entries in the memory map table. Zero
38 * | | if there is no memory map being provided. Only
40 * 52 +----------------+
42 * 56 +----------------+
46 * 0 +----------------+
48 * 8 +----------------+
50 * 16 +----------------+
52 * | | a zero-terminated ASCII string.
53 * 24 +----------------+
55 * 32 +----------------+
57 * The layout of each entry in the memory map table is as follows:
59 * 0 +----------------+
61 * 8 +----------------+
63 * 16 +----------------+
66 * 20 +----------------|
68 * 24 +----------------+
81 * fields can be used to pass a memory map to the guest. The
82 * memory map is optional and so guests that understand version 1
83 * of the structure must check that memmap_entries is non-zero
84 * before trying to read the memory map.
89 * The values used in the type field of the memory map table entries are
91 * Address Map Interfaces" section of the ACPI Specification. Please refer to
123 /* Value will be zero if there is no memory */
124 /* map being provided. */
136 uint64_t addr; /* Base address of the memory region */
137 uint64_t size; /* Size of the memory region in bytes */