aml-build.h 11.8 KB
Newer Older
1 2 3 4
#ifndef HW_ACPI_GEN_UTILS_H
#define HW_ACPI_GEN_UTILS_H

#include <glib.h>
5
#include "hw/acpi/acpi-defs.h"
6
#include "hw/acpi/bios-linker-loader.h"
7 8 9 10 11 12 13 14 15 16

/* Reserve RAM space for tables: add another order of magnitude. */
#define ACPI_BUILD_TABLE_MAX_SIZE         0x200000

#define ACPI_BUILD_APPNAME6 "BOCHS "
#define ACPI_BUILD_APPNAME4 "BXPC"

#define ACPI_BUILD_TABLE_FILE "etc/acpi/tables"
#define ACPI_BUILD_RSDP_FILE "etc/acpi/rsdp"
#define ACPI_BUILD_TPMLOG_FILE "etc/tpm/log"
17

18 19
#define AML_NOTIFY_METHOD "NTFY"

20 21 22 23
typedef enum {
    AML_NO_OPCODE = 0,/* has only data */
    AML_OPCODE,       /* has opcode optionally followed by data */
    AML_PACKAGE,      /* has opcode and uses PkgLength for its length */
M
Michael S. Tsirkin 已提交
24
    AML_EXT_PACKAGE,  /* Same as AML_PACKAGE but also has 'ExOpPrefix' */
25 26 27 28 29 30 31 32 33 34 35 36 37
    AML_BUFFER,       /* data encoded as 'DefBuffer' */
    AML_RES_TEMPLATE, /* encoded as ResourceTemplate macro */
} AmlBlockFlags;

struct Aml {
    GArray *buf;

    /*< private >*/
    uint8_t op;
    AmlBlockFlags block_flags;
};
typedef struct Aml Aml;

I
Igor Mammedov 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
typedef enum {
    AML_COMPATIBILITY = 0,
    AML_TYPEA = 1,
    AML_TYPEB = 2,
    AML_TYPEF = 3,
} AmlDmaType;

typedef enum {
    AML_NOTBUSMASTER = 0,
    AML_BUSMASTER = 1,
} AmlDmaBusMaster;

typedef enum {
    AML_TRANSFER8 = 0,
    AML_TRANSFER8_16 = 1,
    AML_TRANSFER16 = 2,
} AmlTransferSize;

I
Igor Mammedov 已提交
56
typedef enum {
57 58
    AML_DECODE10 = 0,
    AML_DECODE16 = 1,
I
Igor Mammedov 已提交
59 60
} AmlIODecode;

61
typedef enum {
62 63 64 65 66 67
    AML_ANY_ACC = 0,
    AML_BYTE_ACC = 1,
    AML_WORD_ACC = 2,
    AML_DWORD_ACC = 3,
    AML_QWORD_ACC = 4,
    AML_BUFFER_ACC = 5,
68 69
} AmlAccessType;

70 71 72 73 74
typedef enum {
    AML_NOLOCK = 0,
    AML_LOCK = 1,
} AmlLockRule;

75
typedef enum {
76 77 78
    AML_PRESERVE = 0,
    AML_WRITE_AS_ONES = 1,
    AML_WRITE_AS_ZEROS = 2,
79
} AmlUpdateRule;
80

81
typedef enum {
82 83
    AML_SYSTEM_MEMORY = 0X00,
    AML_SYSTEM_IO = 0X01,
84
    AML_PCI_CONFIG = 0X02,
85 86
} AmlRegionSpace;

87
typedef enum {
88 89 90
    AML_MEMORY_RANGE = 0,
    AML_IO_RANGE = 1,
    AML_BUS_NUMBER_RANGE = 2,
91 92 93
} AmlResourceType;

typedef enum {
94 95
    AML_SUB_DECODE = 1 << 1,
    AML_POS_DECODE = 0
96 97 98
} AmlDecode;

typedef enum {
99 100
    AML_MAX_FIXED = 1 << 3,
    AML_MAX_NOT_FIXED = 0,
101 102 103
} AmlMaxFixed;

typedef enum {
104 105
    AML_MIN_FIXED = 1 << 2,
    AML_MIN_NOT_FIXED = 0
106 107 108 109 110 111 112
} AmlMinFixed;

/*
 * ACPI 1.0b: Table 6-26 I/O Resource Flag (Resource Type = 1) Definitions
 * _RNG field definition
 */
typedef enum {
113 114 115
    AML_ISA_ONLY = 1,
    AML_NON_ISA_ONLY = 2,
    AML_ENTIRE_RANGE = 3,
116 117 118 119 120 121 122
} AmlISARanges;

/*
 * ACPI 1.0b: Table 6-25 Memory Resource Flag (Resource Type = 0) Definitions
 * _MEM field definition
 */
typedef enum {
123 124 125 126 127
    AML_NON_CACHEABLE = 0,
    AML_CACHEABLE = 1,
    AML_WRITE_COMBINING = 2,
    AML_PREFETCHABLE = 3,
} AmlCacheable;
128 129 130 131 132 133

/*
 * ACPI 1.0b: Table 6-25 Memory Resource Flag (Resource Type = 0) Definitions
 * _RW field definition
 */
typedef enum {
134 135
    AML_READ_ONLY = 0,
    AML_READ_WRITE = 1,
136 137
} AmlReadAndWrite;

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
/*
 * ACPI 5.0: Table 6-187 Extended Interrupt Descriptor Definition
 * Interrupt Vector Flags Bits[0] Consumer/Producer
 */
typedef enum {
    AML_CONSUMER_PRODUCER = 0,
    AML_CONSUMER = 1,
} AmlConsumerAndProducer;

/*
 * ACPI 5.0: Table 6-187 Extended Interrupt Descriptor Definition
 * _HE field definition
 */
typedef enum {
    AML_LEVEL = 0,
    AML_EDGE = 1,
} AmlLevelAndEdge;

/*
 * ACPI 5.0: Table 6-187 Extended Interrupt Descriptor Definition
 * _LL field definition
 */
typedef enum {
    AML_ACTIVE_HIGH = 0,
    AML_ACTIVE_LOW = 1,
} AmlActiveHighAndLow;

/*
 * ACPI 5.0: Table 6-187 Extended Interrupt Descriptor Definition
 * _SHR field definition
 */
typedef enum {
    AML_EXCLUSIVE = 0,
    AML_SHARED = 1,
    AML_EXCLUSIVE_AND_WAKE = 2,
    AML_SHARED_AND_WAKE = 3,
} AmlShared;

X
Xiao Guangrong 已提交
176 177 178 179 180 181
/* ACPI 1.0b: 16.2.5.2 Named Objects Encoding: MethodFlags */
typedef enum {
    AML_NOTSERIALIZED = 0,
    AML_SERIALIZED = 1,
} AmlSerializeFlag;

182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
/*
 * ACPI 5.0: Table 6-189 GPIO Connection Descriptor Definition
 * GPIO Connection Type
 */
typedef enum {
    AML_INTERRUPT_CONNECTION = 0,
    AML_IO_CONNECTION = 1,
} AmlGpioConnectionType;

/*
 * ACPI 5.0: Table 6-189 GPIO Connection Descriptor Definition
 * _PPI field definition
 */
typedef enum {
    AML_PULL_DEFAULT = 0,
    AML_PULL_UP = 1,
    AML_PULL_DOWN = 2,
    AML_PULL_NONE = 3,
} AmlPinConfig;

202 203 204 205 206 207 208
typedef enum {
    MEM_AFFINITY_NOFLAGS      = 0,
    MEM_AFFINITY_ENABLED      = (1 << 0),
    MEM_AFFINITY_HOTPLUGGABLE = (1 << 1),
    MEM_AFFINITY_NON_VOLATILE = (1 << 2),
} MemoryAffinityFlags;

209 210 211 212 213
typedef
struct AcpiBuildTables {
    GArray *table_data;
    GArray *rsdp;
    GArray *tcpalog;
214
    BIOSLinker *linker;
215 216
} AcpiBuildTables;

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
/**
 * init_aml_allocator:
 *
 * Called for initializing API allocator which allow to use
 * AML API.
 * Returns: toplevel container which accumulates all other
 * AML elements for a table.
 */
Aml *init_aml_allocator(void);

/**
 * free_aml_allocator:
 *
 * Releases all elements used by AML API, frees associated memory
 * and invalidates AML allocator. After this call @init_aml_allocator
 * should be called again if AML API is to be used again.
 */
void free_aml_allocator(void);

/**
 * aml_append:
 * @parent_ctx: context to which @child element is added
 * @child: element that is copied into @parent_ctx context
 *
 * Joins Aml elements together and helps to construct AML tables
 * Examle of usage:
 *   Aml *table = aml_def_block("SSDT", ...);
244
 *   Aml *sb = aml_scope("\\_SB");
245 246 247 248 249 250 251 252
 *   Aml *dev = aml_device("PCI0");
 *
 *   aml_append(dev, aml_name_decl("HID", aml_eisaid("PNP0A03")));
 *   aml_append(sb, dev);
 *   aml_append(table, sb);
 */
void aml_append(Aml *parent_ctx, Aml *child);

253 254 255
/* non block AML object primitives */
Aml *aml_name(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
Aml *aml_name_decl(const char *name, Aml *val);
I
Igor Mammedov 已提交
256
Aml *aml_debug(void);
I
Igor Mammedov 已提交
257
Aml *aml_return(Aml *val);
I
Igor Mammedov 已提交
258
Aml *aml_int(const uint64_t val);
I
Igor Mammedov 已提交
259
Aml *aml_arg(int pos);
I
Igor Mammedov 已提交
260
Aml *aml_to_integer(Aml *arg);
I
Igor Mammedov 已提交
261
Aml *aml_to_hexstring(Aml *src, Aml *dst);
I
Igor Mammedov 已提交
262
Aml *aml_to_buffer(Aml *src, Aml *dst);
I
Igor Mammedov 已提交
263
Aml *aml_store(Aml *val, Aml *target);
264
Aml *aml_and(Aml *arg1, Aml *arg2, Aml *dst);
265
Aml *aml_or(Aml *arg1, Aml *arg2, Aml *dst);
I
Igor Mammedov 已提交
266
Aml *aml_lor(Aml *arg1, Aml *arg2);
267
Aml *aml_shiftleft(Aml *arg1, Aml *count);
268
Aml *aml_shiftright(Aml *arg1, Aml *count, Aml *dst);
M
Marcel Apfelbaum 已提交
269
Aml *aml_lless(Aml *arg1, Aml *arg2);
270
Aml *aml_add(Aml *arg1, Aml *arg2, Aml *dst);
271
Aml *aml_subtract(Aml *arg1, Aml *arg2, Aml *dst);
272
Aml *aml_increment(Aml *arg);
273
Aml *aml_decrement(Aml *arg);
M
Marcel Apfelbaum 已提交
274
Aml *aml_index(Aml *arg1, Aml *idx);
I
Igor Mammedov 已提交
275
Aml *aml_notify(Aml *arg1, Aml *arg2);
I
Igor Mammedov 已提交
276
Aml *aml_call0(const char *method);
277 278 279 280
Aml *aml_call1(const char *method, Aml *arg1);
Aml *aml_call2(const char *method, Aml *arg1, Aml *arg2);
Aml *aml_call3(const char *method, Aml *arg1, Aml *arg2, Aml *arg3);
Aml *aml_call4(const char *method, Aml *arg1, Aml *arg2, Aml *arg3, Aml *arg4);
281 282 283 284 285 286 287
Aml *aml_gpio_int(AmlConsumerAndProducer con_and_pro,
                  AmlLevelAndEdge edge_level,
                  AmlActiveHighAndLow active_level, AmlShared shared,
                  AmlPinConfig pin_config, uint16_t debounce_timeout,
                  const uint32_t pin_list[], uint32_t pin_count,
                  const char *resource_source_name,
                  const uint8_t *vendor_data, uint16_t vendor_data_len);
288 289
Aml *aml_memory32_fixed(uint32_t addr, uint32_t size,
                        AmlReadAndWrite read_and_write);
290 291 292
Aml *aml_interrupt(AmlConsumerAndProducer con_and_pro,
                   AmlLevelAndEdge level_and_edge,
                   AmlActiveHighAndLow high_and_low, AmlShared shared,
293
                   uint32_t *irq_list, uint8_t irq_count);
I
Igor Mammedov 已提交
294 295
Aml *aml_io(AmlIODecode dec, uint16_t min_base, uint16_t max_base,
            uint8_t aln, uint8_t len);
296
Aml *aml_operation_region(const char *name, AmlRegionSpace rs,
297
                          Aml *offset, uint32_t len);
298
Aml *aml_irq_no_flags(uint8_t irq);
299
Aml *aml_named_field(const char *name, unsigned length);
300
Aml *aml_reserved_field(unsigned length);
I
Igor Mammedov 已提交
301
Aml *aml_local(int num);
I
Igor Mammedov 已提交
302
Aml *aml_string(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
303
Aml *aml_lnot(Aml *arg);
I
Igor Mammedov 已提交
304
Aml *aml_equal(Aml *arg1, Aml *arg2);
I
Igor Mammedov 已提交
305
Aml *aml_lgreater(Aml *arg1, Aml *arg2);
I
Igor Mammedov 已提交
306
Aml *aml_lgreater_equal(Aml *arg1, Aml *arg2);
I
Igor Mammedov 已提交
307 308
Aml *aml_processor(uint8_t proc_id, uint32_t pblk_addr, uint8_t pblk_len,
                   const char *name_format, ...) GCC_FMT_ATTR(4, 5);
I
Igor Mammedov 已提交
309
Aml *aml_eisaid(const char *str);
310 311 312 313 314 315 316 317 318
Aml *aml_word_bus_number(AmlMinFixed min_fixed, AmlMaxFixed max_fixed,
                         AmlDecode dec, uint16_t addr_gran,
                         uint16_t addr_min, uint16_t addr_max,
                         uint16_t addr_trans, uint16_t len);
Aml *aml_word_io(AmlMinFixed min_fixed, AmlMaxFixed max_fixed,
                 AmlDecode dec, AmlISARanges isa_ranges,
                 uint16_t addr_gran, uint16_t addr_min,
                 uint16_t addr_max, uint16_t addr_trans,
                 uint16_t len);
319 320 321 322 323
Aml *aml_dword_io(AmlMinFixed min_fixed, AmlMaxFixed max_fixed,
                 AmlDecode dec, AmlISARanges isa_ranges,
                 uint32_t addr_gran, uint32_t addr_min,
                 uint32_t addr_max, uint32_t addr_trans,
                 uint32_t len);
324
Aml *aml_dword_memory(AmlDecode dec, AmlMinFixed min_fixed,
325
                      AmlMaxFixed max_fixed, AmlCacheable cacheable,
326 327 328 329 330
                      AmlReadAndWrite read_and_write,
                      uint32_t addr_gran, uint32_t addr_min,
                      uint32_t addr_max, uint32_t addr_trans,
                      uint32_t len);
Aml *aml_qword_memory(AmlDecode dec, AmlMinFixed min_fixed,
331
                      AmlMaxFixed max_fixed, AmlCacheable cacheable,
332 333 334 335
                      AmlReadAndWrite read_and_write,
                      uint64_t addr_gran, uint64_t addr_min,
                      uint64_t addr_max, uint64_t addr_trans,
                      uint64_t len);
I
Igor Mammedov 已提交
336 337
Aml *aml_dma(AmlDmaType typ, AmlDmaBusMaster bm, AmlTransferSize sz,
             uint8_t channel);
I
Igor Mammedov 已提交
338
Aml *aml_sleep(uint64_t msec);
339

I
Igor Mammedov 已提交
340 341
/* Block AML object primitives */
Aml *aml_scope(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
I
Igor Mammedov 已提交
342
Aml *aml_device(const char *name_format, ...) GCC_FMT_ATTR(1, 2);
X
Xiao Guangrong 已提交
343
Aml *aml_method(const char *name, int arg_count, AmlSerializeFlag sflag);
I
Igor Mammedov 已提交
344
Aml *aml_if(Aml *predicate);
345
Aml *aml_else(void);
M
Marcel Apfelbaum 已提交
346
Aml *aml_while(Aml *predicate);
I
Igor Mammedov 已提交
347
Aml *aml_package(uint8_t num_elements);
348
Aml *aml_buffer(int buffer_size, uint8_t *byte_list);
349
Aml *aml_resource_template(void);
350 351
Aml *aml_field(const char *name, AmlAccessType type, AmlLockRule lock,
               AmlUpdateRule rule);
352 353 354
Aml *aml_mutex(const char *name, uint8_t sync_level);
Aml *aml_acquire(Aml *mutex, uint16_t timeout);
Aml *aml_release(Aml *mutex);
I
Igor Mammedov 已提交
355
Aml *aml_alias(const char *source_object, const char *alias_object);
X
Xiao Guangrong 已提交
356 357
Aml *aml_create_field(Aml *srcbuf, Aml *bit_index, Aml *num_bits,
                      const char *name);
358
Aml *aml_create_dword_field(Aml *srcbuf, Aml *index, const char *name);
I
Igor Mammedov 已提交
359
Aml *aml_create_qword_field(Aml *srcbuf, Aml *index, const char *name);
I
Igor Mammedov 已提交
360
Aml *aml_varpackage(uint32_t num_elements);
361
Aml *aml_touuid(const char *uuid);
362
Aml *aml_unicode(const char *str);
I
Igor Mammedov 已提交
363
Aml *aml_refof(Aml *arg);
X
Xiao Guangrong 已提交
364
Aml *aml_derefof(Aml *arg);
X
Xiao Guangrong 已提交
365
Aml *aml_sizeof(Aml *arg);
X
Xiao Guangrong 已提交
366
Aml *aml_concatenate(Aml *source1, Aml *source2, Aml *target);
I
Igor Mammedov 已提交
367

368
void
369
build_header(BIOSLinker *linker, GArray *table_data,
370
             AcpiTableHeader *h, const char *sig, int len, uint8_t rev,
371
             const char *oem_id, const char *oem_table_id);
372 373 374 375 376
void *acpi_data_push(GArray *table_data, unsigned size);
unsigned acpi_data_len(GArray *table);
void acpi_add_table(GArray *table_offsets, GArray *table_data);
void acpi_build_tables_init(AcpiBuildTables *tables);
void acpi_build_tables_cleanup(AcpiBuildTables *tables, bool mfre);
377
void
378
build_rsdt(GArray *table_data, BIOSLinker *linker, GArray *table_offsets,
379
           const char *oem_id, const char *oem_table_id);
380

381
int
S
Stefan Weil 已提交
382 383
build_append_named_dword(GArray *array, const char *name_format, ...)
GCC_FMT_ATTR(2, 3);
384

385 386 387
void build_srat_memory(AcpiSratMemoryAffinity *numamem, uint64_t base,
                       uint64_t len, int node, MemoryAffinityFlags flags);

388
#endif