target/mips: Remove XBurst Media eXtension Unit dead code
[qemu/ar7.git] / hw / acpi / utils.c
bloba134a4d55491480f4b53b8f27f13ff08cb92dfde
1 /*
2 * Utilities for generating ACPI tables and passing them to Guests
4 * Copyright (C) 2019 Intel Corporation
5 * Copyright (C) 2019 Red Hat Inc
7 * Author: Wei Yang <richardw.yang@linux.intel.com>
8 * Author: Michael S. Tsirkin <mst@redhat.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, see <http://www.gnu.org/licenses/>.
24 #include "qemu/osdep.h"
25 #include "hw/acpi/aml-build.h"
26 #include "hw/acpi/utils.h"
27 #include "hw/loader.h"
29 MemoryRegion *acpi_add_rom_blob(FWCfgCallback update, void *opaque,
30 GArray *blob, const char *name,
31 uint64_t max_size)
33 return rom_add_blob(name, blob->data, acpi_data_len(blob), max_size, -1,
34 name, update, opaque, NULL, true);