mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
hw: move target-independent files to subdirectories
This patch tackles all files that are compiled once, moving them to subdirectories of hw/. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ce3b494cb5
commit
49ab747f66
227 changed files with 205 additions and 208 deletions
|
@ -0,0 +1,2 @@
|
|||
common-obj-$(CONFIG_ACPI) += core.o piix4.o ich9.o
|
||||
|
614
hw/acpi/core.c
Normal file
614
hw/acpi/core.c
Normal file
|
@ -0,0 +1,614 @@
|
|||
/*
|
||||
* ACPI implementation
|
||||
*
|
||||
* Copyright (c) 2006 Fabrice Bellard
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
* Contributions after 2012-01-13 are licensed under the terms of the
|
||||
* GNU GPL, version 2 or (at your option) any later version.
|
||||
*/
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "hw/hw.h"
|
||||
#include "hw/i386/pc.h"
|
||||
#include "hw/acpi/acpi.h"
|
||||
#include "monitor/monitor.h"
|
||||
#include "qemu/config-file.h"
|
||||
#include "qapi/opts-visitor.h"
|
||||
#include "qapi/dealloc-visitor.h"
|
||||
#include "qapi-visit.h"
|
||||
|
||||
struct acpi_table_header {
|
||||
uint16_t _length; /* our length, not actual part of the hdr */
|
||||
/* allows easier parsing for fw_cfg clients */
|
||||
char sig[4]; /* ACPI signature (4 ASCII characters) */
|
||||
uint32_t length; /* Length of table, in bytes, including header */
|
||||
uint8_t revision; /* ACPI Specification minor version # */
|
||||
uint8_t checksum; /* To make sum of entire table == 0 */
|
||||
char oem_id[6]; /* OEM identification */
|
||||
char oem_table_id[8]; /* OEM table identification */
|
||||
uint32_t oem_revision; /* OEM revision number */
|
||||
char asl_compiler_id[4]; /* ASL compiler vendor ID */
|
||||
uint32_t asl_compiler_revision; /* ASL compiler revision number */
|
||||
} QEMU_PACKED;
|
||||
|
||||
#define ACPI_TABLE_HDR_SIZE sizeof(struct acpi_table_header)
|
||||
#define ACPI_TABLE_PFX_SIZE sizeof(uint16_t) /* size of the extra prefix */
|
||||
|
||||
static const char unsigned dfl_hdr[ACPI_TABLE_HDR_SIZE - ACPI_TABLE_PFX_SIZE] =
|
||||
"QEMU\0\0\0\0\1\0" /* sig (4), len(4), revno (1), csum (1) */
|
||||
"QEMUQEQEMUQEMU\1\0\0\0" /* OEM id (6), table (8), revno (4) */
|
||||
"QEMU\1\0\0\0" /* ASL compiler ID (4), version (4) */
|
||||
;
|
||||
|
||||
char unsigned *acpi_tables;
|
||||
size_t acpi_tables_len;
|
||||
|
||||
static QemuOptsList qemu_acpi_opts = {
|
||||
.name = "acpi",
|
||||
.implied_opt_name = "data",
|
||||
.head = QTAILQ_HEAD_INITIALIZER(qemu_acpi_opts.head),
|
||||
.desc = { { 0 } } /* validated with OptsVisitor */
|
||||
};
|
||||
|
||||
static void acpi_register_config(void)
|
||||
{
|
||||
qemu_add_opts(&qemu_acpi_opts);
|
||||
}
|
||||
|
||||
machine_init(acpi_register_config);
|
||||
|
||||
static int acpi_checksum(const uint8_t *data, int len)
|
||||
{
|
||||
int sum, i;
|
||||
sum = 0;
|
||||
for (i = 0; i < len; i++) {
|
||||
sum += data[i];
|
||||
}
|
||||
return (-sum) & 0xff;
|
||||
}
|
||||
|
||||
|
||||
/* Install a copy of the ACPI table specified in @blob.
|
||||
*
|
||||
* If @has_header is set, @blob starts with the System Description Table Header
|
||||
* structure. Otherwise, "dfl_hdr" is prepended. In any case, each header field
|
||||
* is optionally overwritten from @hdrs.
|
||||
*
|
||||
* It is valid to call this function with
|
||||
* (@blob == NULL && bloblen == 0 && !has_header).
|
||||
*
|
||||
* @hdrs->file and @hdrs->data are ignored.
|
||||
*
|
||||
* SIZE_MAX is considered "infinity" in this function.
|
||||
*
|
||||
* The number of tables that can be installed is not limited, but the 16-bit
|
||||
* counter at the beginning of "acpi_tables" wraps around after UINT16_MAX.
|
||||
*/
|
||||
static void acpi_table_install(const char unsigned *blob, size_t bloblen,
|
||||
bool has_header,
|
||||
const struct AcpiTableOptions *hdrs,
|
||||
Error **errp)
|
||||
{
|
||||
size_t body_start;
|
||||
const char unsigned *hdr_src;
|
||||
size_t body_size, acpi_payload_size;
|
||||
struct acpi_table_header *ext_hdr;
|
||||
unsigned changed_fields;
|
||||
|
||||
/* Calculate where the ACPI table body starts within the blob, plus where
|
||||
* to copy the ACPI table header from.
|
||||
*/
|
||||
if (has_header) {
|
||||
/* _length | ACPI header in blob | blob body
|
||||
* ^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^
|
||||
* ACPI_TABLE_PFX_SIZE sizeof dfl_hdr body_size
|
||||
* == body_start
|
||||
*
|
||||
* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
* acpi_payload_size == bloblen
|
||||
*/
|
||||
body_start = sizeof dfl_hdr;
|
||||
|
||||
if (bloblen < body_start) {
|
||||
error_setg(errp, "ACPI table claiming to have header is too "
|
||||
"short, available: %zu, expected: %zu", bloblen,
|
||||
body_start);
|
||||
return;
|
||||
}
|
||||
hdr_src = blob;
|
||||
} else {
|
||||
/* _length | ACPI header in template | blob body
|
||||
* ^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^
|
||||
* ACPI_TABLE_PFX_SIZE sizeof dfl_hdr body_size
|
||||
* == bloblen
|
||||
*
|
||||
* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
* acpi_payload_size
|
||||
*/
|
||||
body_start = 0;
|
||||
hdr_src = dfl_hdr;
|
||||
}
|
||||
body_size = bloblen - body_start;
|
||||
acpi_payload_size = sizeof dfl_hdr + body_size;
|
||||
|
||||
if (acpi_payload_size > UINT16_MAX) {
|
||||
error_setg(errp, "ACPI table too big, requested: %zu, max: %u",
|
||||
acpi_payload_size, (unsigned)UINT16_MAX);
|
||||
return;
|
||||
}
|
||||
|
||||
/* We won't fail from here on. Initialize / extend the globals. */
|
||||
if (acpi_tables == NULL) {
|
||||
acpi_tables_len = sizeof(uint16_t);
|
||||
acpi_tables = g_malloc0(acpi_tables_len);
|
||||
}
|
||||
|
||||
acpi_tables = g_realloc(acpi_tables, acpi_tables_len +
|
||||
ACPI_TABLE_PFX_SIZE +
|
||||
sizeof dfl_hdr + body_size);
|
||||
|
||||
ext_hdr = (struct acpi_table_header *)(acpi_tables + acpi_tables_len);
|
||||
acpi_tables_len += ACPI_TABLE_PFX_SIZE;
|
||||
|
||||
memcpy(acpi_tables + acpi_tables_len, hdr_src, sizeof dfl_hdr);
|
||||
acpi_tables_len += sizeof dfl_hdr;
|
||||
|
||||
if (blob != NULL) {
|
||||
memcpy(acpi_tables + acpi_tables_len, blob + body_start, body_size);
|
||||
acpi_tables_len += body_size;
|
||||
}
|
||||
|
||||
/* increase number of tables */
|
||||
cpu_to_le16wu((uint16_t *)acpi_tables,
|
||||
le16_to_cpupu((uint16_t *)acpi_tables) + 1u);
|
||||
|
||||
/* Update the header fields. The strings need not be NUL-terminated. */
|
||||
changed_fields = 0;
|
||||
ext_hdr->_length = cpu_to_le16(acpi_payload_size);
|
||||
|
||||
if (hdrs->has_sig) {
|
||||
strncpy(ext_hdr->sig, hdrs->sig, sizeof ext_hdr->sig);
|
||||
++changed_fields;
|
||||
}
|
||||
|
||||
if (has_header && le32_to_cpu(ext_hdr->length) != acpi_payload_size) {
|
||||
fprintf(stderr,
|
||||
"warning: ACPI table has wrong length, header says "
|
||||
"%" PRIu32 ", actual size %zu bytes\n",
|
||||
le32_to_cpu(ext_hdr->length), acpi_payload_size);
|
||||
}
|
||||
ext_hdr->length = cpu_to_le32(acpi_payload_size);
|
||||
|
||||
if (hdrs->has_rev) {
|
||||
ext_hdr->revision = hdrs->rev;
|
||||
++changed_fields;
|
||||
}
|
||||
|
||||
ext_hdr->checksum = 0;
|
||||
|
||||
if (hdrs->has_oem_id) {
|
||||
strncpy(ext_hdr->oem_id, hdrs->oem_id, sizeof ext_hdr->oem_id);
|
||||
++changed_fields;
|
||||
}
|
||||
if (hdrs->has_oem_table_id) {
|
||||
strncpy(ext_hdr->oem_table_id, hdrs->oem_table_id,
|
||||
sizeof ext_hdr->oem_table_id);
|
||||
++changed_fields;
|
||||
}
|
||||
if (hdrs->has_oem_rev) {
|
||||
ext_hdr->oem_revision = cpu_to_le32(hdrs->oem_rev);
|
||||
++changed_fields;
|
||||
}
|
||||
if (hdrs->has_asl_compiler_id) {
|
||||
strncpy(ext_hdr->asl_compiler_id, hdrs->asl_compiler_id,
|
||||
sizeof ext_hdr->asl_compiler_id);
|
||||
++changed_fields;
|
||||
}
|
||||
if (hdrs->has_asl_compiler_rev) {
|
||||
ext_hdr->asl_compiler_revision = cpu_to_le32(hdrs->asl_compiler_rev);
|
||||
++changed_fields;
|
||||
}
|
||||
|
||||
if (!has_header && changed_fields == 0) {
|
||||
fprintf(stderr, "warning: ACPI table: no headers are specified\n");
|
||||
}
|
||||
|
||||
/* recalculate checksum */
|
||||
ext_hdr->checksum = acpi_checksum((const char unsigned *)ext_hdr +
|
||||
ACPI_TABLE_PFX_SIZE, acpi_payload_size);
|
||||
}
|
||||
|
||||
void acpi_table_add(const QemuOpts *opts, Error **errp)
|
||||
{
|
||||
AcpiTableOptions *hdrs = NULL;
|
||||
Error *err = NULL;
|
||||
char **pathnames = NULL;
|
||||
char **cur;
|
||||
size_t bloblen = 0;
|
||||
char unsigned *blob = NULL;
|
||||
|
||||
{
|
||||
OptsVisitor *ov;
|
||||
|
||||
ov = opts_visitor_new(opts);
|
||||
visit_type_AcpiTableOptions(opts_get_visitor(ov), &hdrs, NULL, &err);
|
||||
opts_visitor_cleanup(ov);
|
||||
}
|
||||
|
||||
if (err) {
|
||||
goto out;
|
||||
}
|
||||
if (hdrs->has_file == hdrs->has_data) {
|
||||
error_setg(&err, "'-acpitable' requires one of 'data' or 'file'");
|
||||
goto out;
|
||||
}
|
||||
|
||||
pathnames = g_strsplit(hdrs->has_file ? hdrs->file : hdrs->data, ":", 0);
|
||||
if (pathnames == NULL || pathnames[0] == NULL) {
|
||||
error_setg(&err, "'-acpitable' requires at least one pathname");
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* now read in the data files, reallocating buffer as needed */
|
||||
for (cur = pathnames; *cur; ++cur) {
|
||||
int fd = open(*cur, O_RDONLY | O_BINARY);
|
||||
|
||||
if (fd < 0) {
|
||||
error_setg(&err, "can't open file %s: %s", *cur, strerror(errno));
|
||||
goto out;
|
||||
}
|
||||
|
||||
for (;;) {
|
||||
char unsigned data[8192];
|
||||
ssize_t r;
|
||||
|
||||
r = read(fd, data, sizeof data);
|
||||
if (r == 0) {
|
||||
break;
|
||||
} else if (r > 0) {
|
||||
blob = g_realloc(blob, bloblen + r);
|
||||
memcpy(blob + bloblen, data, r);
|
||||
bloblen += r;
|
||||
} else if (errno != EINTR) {
|
||||
error_setg(&err, "can't read file %s: %s",
|
||||
*cur, strerror(errno));
|
||||
close(fd);
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
close(fd);
|
||||
}
|
||||
|
||||
acpi_table_install(blob, bloblen, hdrs->has_file, hdrs, &err);
|
||||
|
||||
out:
|
||||
g_free(blob);
|
||||
g_strfreev(pathnames);
|
||||
|
||||
if (hdrs != NULL) {
|
||||
QapiDeallocVisitor *dv;
|
||||
|
||||
dv = qapi_dealloc_visitor_new();
|
||||
visit_type_AcpiTableOptions(qapi_dealloc_get_visitor(dv), &hdrs, NULL,
|
||||
NULL);
|
||||
qapi_dealloc_visitor_cleanup(dv);
|
||||
}
|
||||
|
||||
error_propagate(errp, err);
|
||||
}
|
||||
|
||||
static void acpi_notify_wakeup(Notifier *notifier, void *data)
|
||||
{
|
||||
ACPIREGS *ar = container_of(notifier, ACPIREGS, wakeup);
|
||||
WakeupReason *reason = data;
|
||||
|
||||
switch (*reason) {
|
||||
case QEMU_WAKEUP_REASON_RTC:
|
||||
ar->pm1.evt.sts |=
|
||||
(ACPI_BITMASK_WAKE_STATUS | ACPI_BITMASK_RT_CLOCK_STATUS);
|
||||
break;
|
||||
case QEMU_WAKEUP_REASON_PMTIMER:
|
||||
ar->pm1.evt.sts |=
|
||||
(ACPI_BITMASK_WAKE_STATUS | ACPI_BITMASK_TIMER_STATUS);
|
||||
break;
|
||||
case QEMU_WAKEUP_REASON_OTHER:
|
||||
default:
|
||||
/* ACPI_BITMASK_WAKE_STATUS should be set on resume.
|
||||
Pretend that resume was caused by power button */
|
||||
ar->pm1.evt.sts |=
|
||||
(ACPI_BITMASK_WAKE_STATUS | ACPI_BITMASK_POWER_BUTTON_STATUS);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* ACPI PM1a EVT */
|
||||
uint16_t acpi_pm1_evt_get_sts(ACPIREGS *ar)
|
||||
{
|
||||
int64_t d = acpi_pm_tmr_get_clock();
|
||||
if (d >= ar->tmr.overflow_time) {
|
||||
ar->pm1.evt.sts |= ACPI_BITMASK_TIMER_STATUS;
|
||||
}
|
||||
return ar->pm1.evt.sts;
|
||||
}
|
||||
|
||||
static void acpi_pm1_evt_write_sts(ACPIREGS *ar, uint16_t val)
|
||||
{
|
||||
uint16_t pm1_sts = acpi_pm1_evt_get_sts(ar);
|
||||
if (pm1_sts & val & ACPI_BITMASK_TIMER_STATUS) {
|
||||
/* if TMRSTS is reset, then compute the new overflow time */
|
||||
acpi_pm_tmr_calc_overflow_time(ar);
|
||||
}
|
||||
ar->pm1.evt.sts &= ~val;
|
||||
}
|
||||
|
||||
static void acpi_pm1_evt_write_en(ACPIREGS *ar, uint16_t val)
|
||||
{
|
||||
ar->pm1.evt.en = val;
|
||||
qemu_system_wakeup_enable(QEMU_WAKEUP_REASON_RTC,
|
||||
val & ACPI_BITMASK_RT_CLOCK_ENABLE);
|
||||
qemu_system_wakeup_enable(QEMU_WAKEUP_REASON_PMTIMER,
|
||||
val & ACPI_BITMASK_TIMER_ENABLE);
|
||||
}
|
||||
|
||||
void acpi_pm1_evt_power_down(ACPIREGS *ar)
|
||||
{
|
||||
if (ar->pm1.evt.en & ACPI_BITMASK_POWER_BUTTON_ENABLE) {
|
||||
ar->pm1.evt.sts |= ACPI_BITMASK_POWER_BUTTON_STATUS;
|
||||
ar->tmr.update_sci(ar);
|
||||
}
|
||||
}
|
||||
|
||||
void acpi_pm1_evt_reset(ACPIREGS *ar)
|
||||
{
|
||||
ar->pm1.evt.sts = 0;
|
||||
ar->pm1.evt.en = 0;
|
||||
qemu_system_wakeup_enable(QEMU_WAKEUP_REASON_RTC, 0);
|
||||
qemu_system_wakeup_enable(QEMU_WAKEUP_REASON_PMTIMER, 0);
|
||||
}
|
||||
|
||||
static uint64_t acpi_pm_evt_read(void *opaque, hwaddr addr, unsigned width)
|
||||
{
|
||||
ACPIREGS *ar = opaque;
|
||||
switch (addr) {
|
||||
case 0:
|
||||
return acpi_pm1_evt_get_sts(ar);
|
||||
case 2:
|
||||
return ar->pm1.evt.en;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static void acpi_pm_evt_write(void *opaque, hwaddr addr, uint64_t val,
|
||||
unsigned width)
|
||||
{
|
||||
ACPIREGS *ar = opaque;
|
||||
switch (addr) {
|
||||
case 0:
|
||||
acpi_pm1_evt_write_sts(ar, val);
|
||||
ar->pm1.evt.update_sci(ar);
|
||||
break;
|
||||
case 2:
|
||||
acpi_pm1_evt_write_en(ar, val);
|
||||
ar->pm1.evt.update_sci(ar);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static const MemoryRegionOps acpi_pm_evt_ops = {
|
||||
.read = acpi_pm_evt_read,
|
||||
.write = acpi_pm_evt_write,
|
||||
.valid.min_access_size = 2,
|
||||
.valid.max_access_size = 2,
|
||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||
};
|
||||
|
||||
void acpi_pm1_evt_init(ACPIREGS *ar, acpi_update_sci_fn update_sci,
|
||||
MemoryRegion *parent)
|
||||
{
|
||||
ar->pm1.evt.update_sci = update_sci;
|
||||
memory_region_init_io(&ar->pm1.evt.io, &acpi_pm_evt_ops, ar, "acpi-evt", 4);
|
||||
memory_region_add_subregion(parent, 0, &ar->pm1.evt.io);
|
||||
}
|
||||
|
||||
/* ACPI PM_TMR */
|
||||
void acpi_pm_tmr_update(ACPIREGS *ar, bool enable)
|
||||
{
|
||||
int64_t expire_time;
|
||||
|
||||
/* schedule a timer interruption if needed */
|
||||
if (enable) {
|
||||
expire_time = muldiv64(ar->tmr.overflow_time, get_ticks_per_sec(),
|
||||
PM_TIMER_FREQUENCY);
|
||||
qemu_mod_timer(ar->tmr.timer, expire_time);
|
||||
} else {
|
||||
qemu_del_timer(ar->tmr.timer);
|
||||
}
|
||||
}
|
||||
|
||||
void acpi_pm_tmr_calc_overflow_time(ACPIREGS *ar)
|
||||
{
|
||||
int64_t d = acpi_pm_tmr_get_clock();
|
||||
ar->tmr.overflow_time = (d + 0x800000LL) & ~0x7fffffLL;
|
||||
}
|
||||
|
||||
static uint32_t acpi_pm_tmr_get(ACPIREGS *ar)
|
||||
{
|
||||
uint32_t d = acpi_pm_tmr_get_clock();
|
||||
return d & 0xffffff;
|
||||
}
|
||||
|
||||
static void acpi_pm_tmr_timer(void *opaque)
|
||||
{
|
||||
ACPIREGS *ar = opaque;
|
||||
qemu_system_wakeup_request(QEMU_WAKEUP_REASON_PMTIMER);
|
||||
ar->tmr.update_sci(ar);
|
||||
}
|
||||
|
||||
static uint64_t acpi_pm_tmr_read(void *opaque, hwaddr addr, unsigned width)
|
||||
{
|
||||
return acpi_pm_tmr_get(opaque);
|
||||
}
|
||||
|
||||
static const MemoryRegionOps acpi_pm_tmr_ops = {
|
||||
.read = acpi_pm_tmr_read,
|
||||
.valid.min_access_size = 4,
|
||||
.valid.max_access_size = 4,
|
||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||
};
|
||||
|
||||
void acpi_pm_tmr_init(ACPIREGS *ar, acpi_update_sci_fn update_sci,
|
||||
MemoryRegion *parent)
|
||||
{
|
||||
ar->tmr.update_sci = update_sci;
|
||||
ar->tmr.timer = qemu_new_timer_ns(vm_clock, acpi_pm_tmr_timer, ar);
|
||||
memory_region_init_io(&ar->tmr.io, &acpi_pm_tmr_ops, ar, "acpi-tmr", 4);
|
||||
memory_region_add_subregion(parent, 8, &ar->tmr.io);
|
||||
}
|
||||
|
||||
void acpi_pm_tmr_reset(ACPIREGS *ar)
|
||||
{
|
||||
ar->tmr.overflow_time = 0;
|
||||
qemu_del_timer(ar->tmr.timer);
|
||||
}
|
||||
|
||||
/* ACPI PM1aCNT */
|
||||
static void acpi_pm1_cnt_write(ACPIREGS *ar, uint16_t val)
|
||||
{
|
||||
ar->pm1.cnt.cnt = val & ~(ACPI_BITMASK_SLEEP_ENABLE);
|
||||
|
||||
if (val & ACPI_BITMASK_SLEEP_ENABLE) {
|
||||
/* change suspend type */
|
||||
uint16_t sus_typ = (val >> 10) & 7;
|
||||
switch(sus_typ) {
|
||||
case 0: /* soft power off */
|
||||
qemu_system_shutdown_request();
|
||||
break;
|
||||
case 1:
|
||||
qemu_system_suspend_request();
|
||||
break;
|
||||
default:
|
||||
if (sus_typ == ar->pm1.cnt.s4_val) { /* S4 request */
|
||||
monitor_protocol_event(QEVENT_SUSPEND_DISK, NULL);
|
||||
qemu_system_shutdown_request();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void acpi_pm1_cnt_update(ACPIREGS *ar,
|
||||
bool sci_enable, bool sci_disable)
|
||||
{
|
||||
/* ACPI specs 3.0, 4.7.2.5 */
|
||||
if (sci_enable) {
|
||||
ar->pm1.cnt.cnt |= ACPI_BITMASK_SCI_ENABLE;
|
||||
} else if (sci_disable) {
|
||||
ar->pm1.cnt.cnt &= ~ACPI_BITMASK_SCI_ENABLE;
|
||||
}
|
||||
}
|
||||
|
||||
static uint64_t acpi_pm_cnt_read(void *opaque, hwaddr addr, unsigned width)
|
||||
{
|
||||
ACPIREGS *ar = opaque;
|
||||
return ar->pm1.cnt.cnt;
|
||||
}
|
||||
|
||||
static void acpi_pm_cnt_write(void *opaque, hwaddr addr, uint64_t val,
|
||||
unsigned width)
|
||||
{
|
||||
acpi_pm1_cnt_write(opaque, val);
|
||||
}
|
||||
|
||||
static const MemoryRegionOps acpi_pm_cnt_ops = {
|
||||
.read = acpi_pm_cnt_read,
|
||||
.write = acpi_pm_cnt_write,
|
||||
.valid.min_access_size = 2,
|
||||
.valid.max_access_size = 2,
|
||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||
};
|
||||
|
||||
void acpi_pm1_cnt_init(ACPIREGS *ar, MemoryRegion *parent, uint8_t s4_val)
|
||||
{
|
||||
ar->pm1.cnt.s4_val = s4_val;
|
||||
ar->wakeup.notify = acpi_notify_wakeup;
|
||||
qemu_register_wakeup_notifier(&ar->wakeup);
|
||||
memory_region_init_io(&ar->pm1.cnt.io, &acpi_pm_cnt_ops, ar, "acpi-cnt", 2);
|
||||
memory_region_add_subregion(parent, 4, &ar->pm1.cnt.io);
|
||||
}
|
||||
|
||||
void acpi_pm1_cnt_reset(ACPIREGS *ar)
|
||||
{
|
||||
ar->pm1.cnt.cnt = 0;
|
||||
}
|
||||
|
||||
/* ACPI GPE */
|
||||
void acpi_gpe_init(ACPIREGS *ar, uint8_t len)
|
||||
{
|
||||
ar->gpe.len = len;
|
||||
ar->gpe.sts = g_malloc0(len / 2);
|
||||
ar->gpe.en = g_malloc0(len / 2);
|
||||
}
|
||||
|
||||
void acpi_gpe_reset(ACPIREGS *ar)
|
||||
{
|
||||
memset(ar->gpe.sts, 0, ar->gpe.len / 2);
|
||||
memset(ar->gpe.en, 0, ar->gpe.len / 2);
|
||||
}
|
||||
|
||||
static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
|
||||
{
|
||||
uint8_t *cur = NULL;
|
||||
|
||||
if (addr < ar->gpe.len / 2) {
|
||||
cur = ar->gpe.sts + addr;
|
||||
} else if (addr < ar->gpe.len) {
|
||||
cur = ar->gpe.en + addr - ar->gpe.len / 2;
|
||||
} else {
|
||||
abort();
|
||||
}
|
||||
|
||||
return cur;
|
||||
}
|
||||
|
||||
void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
|
||||
{
|
||||
uint8_t *cur;
|
||||
|
||||
cur = acpi_gpe_ioport_get_ptr(ar, addr);
|
||||
if (addr < ar->gpe.len / 2) {
|
||||
/* GPE_STS */
|
||||
*cur = (*cur) & ~val;
|
||||
} else if (addr < ar->gpe.len) {
|
||||
/* GPE_EN */
|
||||
*cur = val;
|
||||
} else {
|
||||
abort();
|
||||
}
|
||||
}
|
||||
|
||||
uint32_t acpi_gpe_ioport_readb(ACPIREGS *ar, uint32_t addr)
|
||||
{
|
||||
uint8_t *cur;
|
||||
uint32_t val;
|
||||
|
||||
cur = acpi_gpe_ioport_get_ptr(ar, addr);
|
||||
val = 0;
|
||||
if (cur != NULL) {
|
||||
val = *cur;
|
||||
}
|
||||
|
||||
return val;
|
||||
}
|
230
hw/acpi/ich9.c
Normal file
230
hw/acpi/ich9.c
Normal file
|
@ -0,0 +1,230 @@
|
|||
/*
|
||||
* ACPI implementation
|
||||
*
|
||||
* Copyright (c) 2006 Fabrice Bellard
|
||||
* Copyright (c) 2009 Isaku Yamahata <yamahata at valinux co jp>
|
||||
* VA Linux Systems Japan K.K.
|
||||
* Copyright (C) 2012 Jason Baron <jbaron@redhat.com>
|
||||
*
|
||||
* This is based on acpi.c.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
* Contributions after 2012-01-13 are licensed under the terms of the
|
||||
* GNU GPL, version 2 or (at your option) any later version.
|
||||
*/
|
||||
#include "hw/hw.h"
|
||||
#include "hw/i386/pc.h"
|
||||
#include "hw/pci/pci.h"
|
||||
#include "qemu/timer.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "hw/acpi/acpi.h"
|
||||
#include "sysemu/kvm.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#include "hw/i386/ich9.h"
|
||||
|
||||
//#define DEBUG
|
||||
|
||||
#ifdef DEBUG
|
||||
#define ICH9_DEBUG(fmt, ...) \
|
||||
do { printf("%s "fmt, __func__, ## __VA_ARGS__); } while (0)
|
||||
#else
|
||||
#define ICH9_DEBUG(fmt, ...) do { } while (0)
|
||||
#endif
|
||||
|
||||
static void pm_update_sci(ICH9LPCPMRegs *pm)
|
||||
{
|
||||
int sci_level, pm1a_sts;
|
||||
|
||||
pm1a_sts = acpi_pm1_evt_get_sts(&pm->acpi_regs);
|
||||
|
||||
sci_level = (((pm1a_sts & pm->acpi_regs.pm1.evt.en) &
|
||||
(ACPI_BITMASK_RT_CLOCK_ENABLE |
|
||||
ACPI_BITMASK_POWER_BUTTON_ENABLE |
|
||||
ACPI_BITMASK_GLOBAL_LOCK_ENABLE |
|
||||
ACPI_BITMASK_TIMER_ENABLE)) != 0);
|
||||
qemu_set_irq(pm->irq, sci_level);
|
||||
|
||||
/* schedule a timer interruption if needed */
|
||||
acpi_pm_tmr_update(&pm->acpi_regs,
|
||||
(pm->acpi_regs.pm1.evt.en & ACPI_BITMASK_TIMER_ENABLE) &&
|
||||
!(pm1a_sts & ACPI_BITMASK_TIMER_STATUS));
|
||||
}
|
||||
|
||||
static void ich9_pm_update_sci_fn(ACPIREGS *regs)
|
||||
{
|
||||
ICH9LPCPMRegs *pm = container_of(regs, ICH9LPCPMRegs, acpi_regs);
|
||||
pm_update_sci(pm);
|
||||
}
|
||||
|
||||
static uint64_t ich9_gpe_readb(void *opaque, hwaddr addr, unsigned width)
|
||||
{
|
||||
ICH9LPCPMRegs *pm = opaque;
|
||||
return acpi_gpe_ioport_readb(&pm->acpi_regs, addr);
|
||||
}
|
||||
|
||||
static void ich9_gpe_writeb(void *opaque, hwaddr addr, uint64_t val,
|
||||
unsigned width)
|
||||
{
|
||||
ICH9LPCPMRegs *pm = opaque;
|
||||
acpi_gpe_ioport_writeb(&pm->acpi_regs, addr, val);
|
||||
}
|
||||
|
||||
static const MemoryRegionOps ich9_gpe_ops = {
|
||||
.read = ich9_gpe_readb,
|
||||
.write = ich9_gpe_writeb,
|
||||
.valid.min_access_size = 1,
|
||||
.valid.max_access_size = 4,
|
||||
.impl.min_access_size = 1,
|
||||
.impl.max_access_size = 1,
|
||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||
};
|
||||
|
||||
static uint64_t ich9_smi_readl(void *opaque, hwaddr addr, unsigned width)
|
||||
{
|
||||
ICH9LPCPMRegs *pm = opaque;
|
||||
switch (addr) {
|
||||
case 0:
|
||||
return pm->smi_en;
|
||||
case 4:
|
||||
return pm->smi_sts;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
static void ich9_smi_writel(void *opaque, hwaddr addr, uint64_t val,
|
||||
unsigned width)
|
||||
{
|
||||
ICH9LPCPMRegs *pm = opaque;
|
||||
switch (addr) {
|
||||
case 0:
|
||||
pm->smi_en = val;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static const MemoryRegionOps ich9_smi_ops = {
|
||||
.read = ich9_smi_readl,
|
||||
.write = ich9_smi_writel,
|
||||
.valid.min_access_size = 4,
|
||||
.valid.max_access_size = 4,
|
||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||
};
|
||||
|
||||
void ich9_pm_iospace_update(ICH9LPCPMRegs *pm, uint32_t pm_io_base)
|
||||
{
|
||||
ICH9_DEBUG("to 0x%x\n", pm_io_base);
|
||||
|
||||
assert((pm_io_base & ICH9_PMIO_MASK) == 0);
|
||||
|
||||
pm->pm_io_base = pm_io_base;
|
||||
memory_region_transaction_begin();
|
||||
memory_region_set_enabled(&pm->io, pm->pm_io_base != 0);
|
||||
memory_region_set_address(&pm->io, pm->pm_io_base);
|
||||
memory_region_transaction_commit();
|
||||
}
|
||||
|
||||
static int ich9_pm_post_load(void *opaque, int version_id)
|
||||
{
|
||||
ICH9LPCPMRegs *pm = opaque;
|
||||
uint32_t pm_io_base = pm->pm_io_base;
|
||||
pm->pm_io_base = 0;
|
||||
ich9_pm_iospace_update(pm, pm_io_base);
|
||||
return 0;
|
||||
}
|
||||
|
||||
#define VMSTATE_GPE_ARRAY(_field, _state) \
|
||||
{ \
|
||||
.name = (stringify(_field)), \
|
||||
.version_id = 0, \
|
||||
.num = ICH9_PMIO_GPE0_LEN, \
|
||||
.info = &vmstate_info_uint8, \
|
||||
.size = sizeof(uint8_t), \
|
||||
.flags = VMS_ARRAY | VMS_POINTER, \
|
||||
.offset = vmstate_offset_pointer(_state, _field, uint8_t), \
|
||||
}
|
||||
|
||||
const VMStateDescription vmstate_ich9_pm = {
|
||||
.name = "ich9_pm",
|
||||
.version_id = 1,
|
||||
.minimum_version_id = 1,
|
||||
.minimum_version_id_old = 1,
|
||||
.post_load = ich9_pm_post_load,
|
||||
.fields = (VMStateField[]) {
|
||||
VMSTATE_UINT16(acpi_regs.pm1.evt.sts, ICH9LPCPMRegs),
|
||||
VMSTATE_UINT16(acpi_regs.pm1.evt.en, ICH9LPCPMRegs),
|
||||
VMSTATE_UINT16(acpi_regs.pm1.cnt.cnt, ICH9LPCPMRegs),
|
||||
VMSTATE_TIMER(acpi_regs.tmr.timer, ICH9LPCPMRegs),
|
||||
VMSTATE_INT64(acpi_regs.tmr.overflow_time, ICH9LPCPMRegs),
|
||||
VMSTATE_GPE_ARRAY(acpi_regs.gpe.sts, ICH9LPCPMRegs),
|
||||
VMSTATE_GPE_ARRAY(acpi_regs.gpe.en, ICH9LPCPMRegs),
|
||||
VMSTATE_UINT32(smi_en, ICH9LPCPMRegs),
|
||||
VMSTATE_UINT32(smi_sts, ICH9LPCPMRegs),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static void pm_reset(void *opaque)
|
||||
{
|
||||
ICH9LPCPMRegs *pm = opaque;
|
||||
ich9_pm_iospace_update(pm, 0);
|
||||
|
||||
acpi_pm1_evt_reset(&pm->acpi_regs);
|
||||
acpi_pm1_cnt_reset(&pm->acpi_regs);
|
||||
acpi_pm_tmr_reset(&pm->acpi_regs);
|
||||
acpi_gpe_reset(&pm->acpi_regs);
|
||||
|
||||
if (kvm_enabled()) {
|
||||
/* Mark SMM as already inited to prevent SMM from running. KVM does not
|
||||
* support SMM mode. */
|
||||
pm->smi_en |= ICH9_PMIO_SMI_EN_APMC_EN;
|
||||
}
|
||||
|
||||
pm_update_sci(pm);
|
||||
}
|
||||
|
||||
static void pm_powerdown_req(Notifier *n, void *opaque)
|
||||
{
|
||||
ICH9LPCPMRegs *pm = container_of(n, ICH9LPCPMRegs, powerdown_notifier);
|
||||
|
||||
acpi_pm1_evt_power_down(&pm->acpi_regs);
|
||||
}
|
||||
|
||||
void ich9_pm_init(PCIDevice *lpc_pci, ICH9LPCPMRegs *pm,
|
||||
qemu_irq sci_irq, qemu_irq cmos_s3)
|
||||
{
|
||||
memory_region_init(&pm->io, "ich9-pm", ICH9_PMIO_SIZE);
|
||||
memory_region_set_enabled(&pm->io, false);
|
||||
memory_region_add_subregion(pci_address_space_io(lpc_pci),
|
||||
0, &pm->io);
|
||||
|
||||
acpi_pm_tmr_init(&pm->acpi_regs, ich9_pm_update_sci_fn, &pm->io);
|
||||
acpi_pm1_evt_init(&pm->acpi_regs, ich9_pm_update_sci_fn, &pm->io);
|
||||
acpi_pm1_cnt_init(&pm->acpi_regs, &pm->io, 2);
|
||||
|
||||
acpi_gpe_init(&pm->acpi_regs, ICH9_PMIO_GPE0_LEN);
|
||||
memory_region_init_io(&pm->io_gpe, &ich9_gpe_ops, pm, "apci-gpe0",
|
||||
ICH9_PMIO_GPE0_LEN);
|
||||
memory_region_add_subregion(&pm->io, ICH9_PMIO_GPE0_STS, &pm->io_gpe);
|
||||
|
||||
memory_region_init_io(&pm->io_smi, &ich9_smi_ops, pm, "apci-smi",
|
||||
8);
|
||||
memory_region_add_subregion(&pm->io, ICH9_PMIO_SMI_EN, &pm->io_smi);
|
||||
|
||||
pm->irq = sci_irq;
|
||||
qemu_register_reset(pm_reset, pm);
|
||||
pm->powerdown_notifier.notify = pm_powerdown_req;
|
||||
qemu_register_powerdown_notifier(&pm->powerdown_notifier);
|
||||
}
|
641
hw/acpi/piix4.c
Normal file
641
hw/acpi/piix4.c
Normal file
|
@ -0,0 +1,641 @@
|
|||
/*
|
||||
* ACPI implementation
|
||||
*
|
||||
* Copyright (c) 2006 Fabrice Bellard
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
* Contributions after 2012-01-13 are licensed under the terms of the
|
||||
* GNU GPL, version 2 or (at your option) any later version.
|
||||
*/
|
||||
#include "hw/hw.h"
|
||||
#include "hw/i386/pc.h"
|
||||
#include "hw/isa/apm.h"
|
||||
#include "hw/i2c/pm_smbus.h"
|
||||
#include "hw/pci/pci.h"
|
||||
#include "hw/acpi/acpi.h"
|
||||
#include "sysemu/sysemu.h"
|
||||
#include "qemu/range.h"
|
||||
#include "exec/ioport.h"
|
||||
#include "hw/nvram/fw_cfg.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG
|
||||
|
||||
#ifdef DEBUG
|
||||
# define PIIX4_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
|
||||
#else
|
||||
# define PIIX4_DPRINTF(format, ...) do { } while (0)
|
||||
#endif
|
||||
|
||||
#define GPE_BASE 0xafe0
|
||||
#define GPE_LEN 4
|
||||
|
||||
#define PCI_HOTPLUG_ADDR 0xae00
|
||||
#define PCI_HOTPLUG_SIZE 0x000f
|
||||
#define PCI_UP_BASE 0xae00
|
||||
#define PCI_DOWN_BASE 0xae04
|
||||
#define PCI_EJ_BASE 0xae08
|
||||
#define PCI_RMV_BASE 0xae0c
|
||||
|
||||
#define PIIX4_PCI_HOTPLUG_STATUS 2
|
||||
|
||||
struct pci_status {
|
||||
uint32_t up; /* deprecated, maintained for migration compatibility */
|
||||
uint32_t down;
|
||||
};
|
||||
|
||||
typedef struct PIIX4PMState {
|
||||
PCIDevice dev;
|
||||
|
||||
MemoryRegion io;
|
||||
MemoryRegion io_gpe;
|
||||
MemoryRegion io_pci;
|
||||
ACPIREGS ar;
|
||||
|
||||
APMState apm;
|
||||
|
||||
PMSMBus smb;
|
||||
uint32_t smb_io_base;
|
||||
|
||||
qemu_irq irq;
|
||||
qemu_irq smi_irq;
|
||||
int kvm_enabled;
|
||||
Notifier machine_ready;
|
||||
Notifier powerdown_notifier;
|
||||
|
||||
/* for pci hotplug */
|
||||
struct pci_status pci0_status;
|
||||
uint32_t pci0_hotplug_enable;
|
||||
uint32_t pci0_slot_device_present;
|
||||
|
||||
uint8_t disable_s3;
|
||||
uint8_t disable_s4;
|
||||
uint8_t s4_val;
|
||||
} PIIX4PMState;
|
||||
|
||||
static void piix4_acpi_system_hot_add_init(MemoryRegion *parent,
|
||||
PCIBus *bus, PIIX4PMState *s);
|
||||
|
||||
#define ACPI_ENABLE 0xf1
|
||||
#define ACPI_DISABLE 0xf0
|
||||
|
||||
static void pm_update_sci(PIIX4PMState *s)
|
||||
{
|
||||
int sci_level, pmsts;
|
||||
|
||||
pmsts = acpi_pm1_evt_get_sts(&s->ar);
|
||||
sci_level = (((pmsts & s->ar.pm1.evt.en) &
|
||||
(ACPI_BITMASK_RT_CLOCK_ENABLE |
|
||||
ACPI_BITMASK_POWER_BUTTON_ENABLE |
|
||||
ACPI_BITMASK_GLOBAL_LOCK_ENABLE |
|
||||
ACPI_BITMASK_TIMER_ENABLE)) != 0) ||
|
||||
(((s->ar.gpe.sts[0] & s->ar.gpe.en[0])
|
||||
& PIIX4_PCI_HOTPLUG_STATUS) != 0);
|
||||
|
||||
qemu_set_irq(s->irq, sci_level);
|
||||
/* schedule a timer interruption if needed */
|
||||
acpi_pm_tmr_update(&s->ar, (s->ar.pm1.evt.en & ACPI_BITMASK_TIMER_ENABLE) &&
|
||||
!(pmsts & ACPI_BITMASK_TIMER_STATUS));
|
||||
}
|
||||
|
||||
static void pm_tmr_timer(ACPIREGS *ar)
|
||||
{
|
||||
PIIX4PMState *s = container_of(ar, PIIX4PMState, ar);
|
||||
pm_update_sci(s);
|
||||
}
|
||||
|
||||
static void apm_ctrl_changed(uint32_t val, void *arg)
|
||||
{
|
||||
PIIX4PMState *s = arg;
|
||||
|
||||
/* ACPI specs 3.0, 4.7.2.5 */
|
||||
acpi_pm1_cnt_update(&s->ar, val == ACPI_ENABLE, val == ACPI_DISABLE);
|
||||
|
||||
if (s->dev.config[0x5b] & (1 << 1)) {
|
||||
if (s->smi_irq) {
|
||||
qemu_irq_raise(s->smi_irq);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void pm_io_space_update(PIIX4PMState *s)
|
||||
{
|
||||
uint32_t pm_io_base;
|
||||
|
||||
pm_io_base = le32_to_cpu(*(uint32_t *)(s->dev.config + 0x40));
|
||||
pm_io_base &= 0xffc0;
|
||||
|
||||
memory_region_transaction_begin();
|
||||
memory_region_set_enabled(&s->io, s->dev.config[0x80] & 1);
|
||||
memory_region_set_address(&s->io, pm_io_base);
|
||||
memory_region_transaction_commit();
|
||||
}
|
||||
|
||||
static void smbus_io_space_update(PIIX4PMState *s)
|
||||
{
|
||||
s->smb_io_base = le32_to_cpu(*(uint32_t *)(s->dev.config + 0x90));
|
||||
s->smb_io_base &= 0xffc0;
|
||||
|
||||
memory_region_transaction_begin();
|
||||
memory_region_set_enabled(&s->smb.io, s->dev.config[0xd2] & 1);
|
||||
memory_region_set_address(&s->smb.io, s->smb_io_base);
|
||||
memory_region_transaction_commit();
|
||||
}
|
||||
|
||||
static void pm_write_config(PCIDevice *d,
|
||||
uint32_t address, uint32_t val, int len)
|
||||
{
|
||||
pci_default_write_config(d, address, val, len);
|
||||
if (range_covers_byte(address, len, 0x80) ||
|
||||
ranges_overlap(address, len, 0x40, 4)) {
|
||||
pm_io_space_update((PIIX4PMState *)d);
|
||||
}
|
||||
if (range_covers_byte(address, len, 0xd2) ||
|
||||
ranges_overlap(address, len, 0x90, 4)) {
|
||||
smbus_io_space_update((PIIX4PMState *)d);
|
||||
}
|
||||
}
|
||||
|
||||
static void vmstate_pci_status_pre_save(void *opaque)
|
||||
{
|
||||
struct pci_status *pci0_status = opaque;
|
||||
PIIX4PMState *s = container_of(pci0_status, PIIX4PMState, pci0_status);
|
||||
|
||||
/* We no longer track up, so build a safe value for migrating
|
||||
* to a version that still does... of course these might get lost
|
||||
* by an old buggy implementation, but we try. */
|
||||
pci0_status->up = s->pci0_slot_device_present & s->pci0_hotplug_enable;
|
||||
}
|
||||
|
||||
static int vmstate_acpi_post_load(void *opaque, int version_id)
|
||||
{
|
||||
PIIX4PMState *s = opaque;
|
||||
|
||||
pm_io_space_update(s);
|
||||
return 0;
|
||||
}
|
||||
|
||||
#define VMSTATE_GPE_ARRAY(_field, _state) \
|
||||
{ \
|
||||
.name = (stringify(_field)), \
|
||||
.version_id = 0, \
|
||||
.info = &vmstate_info_uint16, \
|
||||
.size = sizeof(uint16_t), \
|
||||
.flags = VMS_SINGLE | VMS_POINTER, \
|
||||
.offset = vmstate_offset_pointer(_state, _field, uint8_t), \
|
||||
}
|
||||
|
||||
static const VMStateDescription vmstate_gpe = {
|
||||
.name = "gpe",
|
||||
.version_id = 1,
|
||||
.minimum_version_id = 1,
|
||||
.minimum_version_id_old = 1,
|
||||
.fields = (VMStateField []) {
|
||||
VMSTATE_GPE_ARRAY(sts, ACPIGPE),
|
||||
VMSTATE_GPE_ARRAY(en, ACPIGPE),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static const VMStateDescription vmstate_pci_status = {
|
||||
.name = "pci_status",
|
||||
.version_id = 1,
|
||||
.minimum_version_id = 1,
|
||||
.minimum_version_id_old = 1,
|
||||
.pre_save = vmstate_pci_status_pre_save,
|
||||
.fields = (VMStateField []) {
|
||||
VMSTATE_UINT32(up, struct pci_status),
|
||||
VMSTATE_UINT32(down, struct pci_status),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static int acpi_load_old(QEMUFile *f, void *opaque, int version_id)
|
||||
{
|
||||
PIIX4PMState *s = opaque;
|
||||
int ret, i;
|
||||
uint16_t temp;
|
||||
|
||||
ret = pci_device_load(&s->dev, f);
|
||||
if (ret < 0) {
|
||||
return ret;
|
||||
}
|
||||
qemu_get_be16s(f, &s->ar.pm1.evt.sts);
|
||||
qemu_get_be16s(f, &s->ar.pm1.evt.en);
|
||||
qemu_get_be16s(f, &s->ar.pm1.cnt.cnt);
|
||||
|
||||
ret = vmstate_load_state(f, &vmstate_apm, &s->apm, 1);
|
||||
if (ret) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
qemu_get_timer(f, s->ar.tmr.timer);
|
||||
qemu_get_sbe64s(f, &s->ar.tmr.overflow_time);
|
||||
|
||||
qemu_get_be16s(f, (uint16_t *)s->ar.gpe.sts);
|
||||
for (i = 0; i < 3; i++) {
|
||||
qemu_get_be16s(f, &temp);
|
||||
}
|
||||
|
||||
qemu_get_be16s(f, (uint16_t *)s->ar.gpe.en);
|
||||
for (i = 0; i < 3; i++) {
|
||||
qemu_get_be16s(f, &temp);
|
||||
}
|
||||
|
||||
ret = vmstate_load_state(f, &vmstate_pci_status, &s->pci0_status, 1);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* qemu-kvm 1.2 uses version 3 but advertised as 2
|
||||
* To support incoming qemu-kvm 1.2 migration, change version_id
|
||||
* and minimum_version_id to 2 below (which breaks migration from
|
||||
* qemu 1.2).
|
||||
*
|
||||
*/
|
||||
static const VMStateDescription vmstate_acpi = {
|
||||
.name = "piix4_pm",
|
||||
.version_id = 3,
|
||||
.minimum_version_id = 3,
|
||||
.minimum_version_id_old = 1,
|
||||
.load_state_old = acpi_load_old,
|
||||
.post_load = vmstate_acpi_post_load,
|
||||
.fields = (VMStateField []) {
|
||||
VMSTATE_PCI_DEVICE(dev, PIIX4PMState),
|
||||
VMSTATE_UINT16(ar.pm1.evt.sts, PIIX4PMState),
|
||||
VMSTATE_UINT16(ar.pm1.evt.en, PIIX4PMState),
|
||||
VMSTATE_UINT16(ar.pm1.cnt.cnt, PIIX4PMState),
|
||||
VMSTATE_STRUCT(apm, PIIX4PMState, 0, vmstate_apm, APMState),
|
||||
VMSTATE_TIMER(ar.tmr.timer, PIIX4PMState),
|
||||
VMSTATE_INT64(ar.tmr.overflow_time, PIIX4PMState),
|
||||
VMSTATE_STRUCT(ar.gpe, PIIX4PMState, 2, vmstate_gpe, ACPIGPE),
|
||||
VMSTATE_STRUCT(pci0_status, PIIX4PMState, 2, vmstate_pci_status,
|
||||
struct pci_status),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
||||
static void acpi_piix_eject_slot(PIIX4PMState *s, unsigned slots)
|
||||
{
|
||||
BusChild *kid, *next;
|
||||
BusState *bus = qdev_get_parent_bus(&s->dev.qdev);
|
||||
int slot = ffs(slots) - 1;
|
||||
bool slot_free = true;
|
||||
|
||||
/* Mark request as complete */
|
||||
s->pci0_status.down &= ~(1U << slot);
|
||||
|
||||
QTAILQ_FOREACH_SAFE(kid, &bus->children, sibling, next) {
|
||||
DeviceState *qdev = kid->child;
|
||||
PCIDevice *dev = PCI_DEVICE(qdev);
|
||||
PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev);
|
||||
if (PCI_SLOT(dev->devfn) == slot) {
|
||||
if (pc->no_hotplug) {
|
||||
slot_free = false;
|
||||
} else {
|
||||
qdev_free(qdev);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (slot_free) {
|
||||
s->pci0_slot_device_present &= ~(1U << slot);
|
||||
}
|
||||
}
|
||||
|
||||
static void piix4_update_hotplug(PIIX4PMState *s)
|
||||
{
|
||||
PCIDevice *dev = &s->dev;
|
||||
BusState *bus = qdev_get_parent_bus(&dev->qdev);
|
||||
BusChild *kid, *next;
|
||||
|
||||
/* Execute any pending removes during reset */
|
||||
while (s->pci0_status.down) {
|
||||
acpi_piix_eject_slot(s, s->pci0_status.down);
|
||||
}
|
||||
|
||||
s->pci0_hotplug_enable = ~0;
|
||||
s->pci0_slot_device_present = 0;
|
||||
|
||||
QTAILQ_FOREACH_SAFE(kid, &bus->children, sibling, next) {
|
||||
DeviceState *qdev = kid->child;
|
||||
PCIDevice *pdev = PCI_DEVICE(qdev);
|
||||
PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pdev);
|
||||
int slot = PCI_SLOT(pdev->devfn);
|
||||
|
||||
if (pc->no_hotplug) {
|
||||
s->pci0_hotplug_enable &= ~(1U << slot);
|
||||
}
|
||||
|
||||
s->pci0_slot_device_present |= (1U << slot);
|
||||
}
|
||||
}
|
||||
|
||||
static void piix4_reset(void *opaque)
|
||||
{
|
||||
PIIX4PMState *s = opaque;
|
||||
uint8_t *pci_conf = s->dev.config;
|
||||
|
||||
pci_conf[0x58] = 0;
|
||||
pci_conf[0x59] = 0;
|
||||
pci_conf[0x5a] = 0;
|
||||
pci_conf[0x5b] = 0;
|
||||
|
||||
pci_conf[0x40] = 0x01; /* PM io base read only bit */
|
||||
pci_conf[0x80] = 0;
|
||||
|
||||
if (s->kvm_enabled) {
|
||||
/* Mark SMM as already inited (until KVM supports SMM). */
|
||||
pci_conf[0x5B] = 0x02;
|
||||
}
|
||||
piix4_update_hotplug(s);
|
||||
}
|
||||
|
||||
static void piix4_pm_powerdown_req(Notifier *n, void *opaque)
|
||||
{
|
||||
PIIX4PMState *s = container_of(n, PIIX4PMState, powerdown_notifier);
|
||||
|
||||
assert(s != NULL);
|
||||
acpi_pm1_evt_power_down(&s->ar);
|
||||
}
|
||||
|
||||
static void piix4_pm_machine_ready(Notifier *n, void *opaque)
|
||||
{
|
||||
PIIX4PMState *s = container_of(n, PIIX4PMState, machine_ready);
|
||||
uint8_t *pci_conf;
|
||||
|
||||
pci_conf = s->dev.config;
|
||||
pci_conf[0x5f] = (isa_is_ioport_assigned(0x378) ? 0x80 : 0) | 0x10;
|
||||
pci_conf[0x63] = 0x60;
|
||||
pci_conf[0x67] = (isa_is_ioport_assigned(0x3f8) ? 0x08 : 0) |
|
||||
(isa_is_ioport_assigned(0x2f8) ? 0x90 : 0);
|
||||
|
||||
}
|
||||
|
||||
static int piix4_pm_initfn(PCIDevice *dev)
|
||||
{
|
||||
PIIX4PMState *s = DO_UPCAST(PIIX4PMState, dev, dev);
|
||||
uint8_t *pci_conf;
|
||||
|
||||
pci_conf = s->dev.config;
|
||||
pci_conf[0x06] = 0x80;
|
||||
pci_conf[0x07] = 0x02;
|
||||
pci_conf[0x09] = 0x00;
|
||||
pci_conf[0x3d] = 0x01; // interrupt pin 1
|
||||
|
||||
/* APM */
|
||||
apm_init(dev, &s->apm, apm_ctrl_changed, s);
|
||||
|
||||
if (s->kvm_enabled) {
|
||||
/* Mark SMM as already inited to prevent SMM from running. KVM does not
|
||||
* support SMM mode. */
|
||||
pci_conf[0x5B] = 0x02;
|
||||
}
|
||||
|
||||
/* XXX: which specification is used ? The i82731AB has different
|
||||
mappings */
|
||||
pci_conf[0x90] = s->smb_io_base | 1;
|
||||
pci_conf[0x91] = s->smb_io_base >> 8;
|
||||
pci_conf[0xd2] = 0x09;
|
||||
pm_smbus_init(&s->dev.qdev, &s->smb);
|
||||
memory_region_set_enabled(&s->smb.io, pci_conf[0xd2] & 1);
|
||||
memory_region_add_subregion(pci_address_space_io(dev),
|
||||
s->smb_io_base, &s->smb.io);
|
||||
|
||||
memory_region_init(&s->io, "piix4-pm", 64);
|
||||
memory_region_set_enabled(&s->io, false);
|
||||
memory_region_add_subregion(pci_address_space_io(dev),
|
||||
0, &s->io);
|
||||
|
||||
acpi_pm_tmr_init(&s->ar, pm_tmr_timer, &s->io);
|
||||
acpi_pm1_evt_init(&s->ar, pm_tmr_timer, &s->io);
|
||||
acpi_pm1_cnt_init(&s->ar, &s->io, s->s4_val);
|
||||
acpi_gpe_init(&s->ar, GPE_LEN);
|
||||
|
||||
s->powerdown_notifier.notify = piix4_pm_powerdown_req;
|
||||
qemu_register_powerdown_notifier(&s->powerdown_notifier);
|
||||
|
||||
s->machine_ready.notify = piix4_pm_machine_ready;
|
||||
qemu_add_machine_init_done_notifier(&s->machine_ready);
|
||||
qemu_register_reset(piix4_reset, s);
|
||||
|
||||
piix4_acpi_system_hot_add_init(pci_address_space_io(dev), dev->bus, s);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
|
||||
qemu_irq sci_irq, qemu_irq smi_irq,
|
||||
int kvm_enabled, void *fw_cfg)
|
||||
{
|
||||
PCIDevice *dev;
|
||||
PIIX4PMState *s;
|
||||
|
||||
dev = pci_create(bus, devfn, "PIIX4_PM");
|
||||
qdev_prop_set_uint32(&dev->qdev, "smb_io_base", smb_io_base);
|
||||
|
||||
s = DO_UPCAST(PIIX4PMState, dev, dev);
|
||||
s->irq = sci_irq;
|
||||
s->smi_irq = smi_irq;
|
||||
s->kvm_enabled = kvm_enabled;
|
||||
|
||||
qdev_init_nofail(&dev->qdev);
|
||||
|
||||
if (fw_cfg) {
|
||||
uint8_t suspend[6] = {128, 0, 0, 129, 128, 128};
|
||||
suspend[3] = 1 | ((!s->disable_s3) << 7);
|
||||
suspend[4] = s->s4_val | ((!s->disable_s4) << 7);
|
||||
|
||||
fw_cfg_add_file(fw_cfg, "etc/system-states", g_memdup(suspend, 6), 6);
|
||||
}
|
||||
|
||||
return s->smb.smbus;
|
||||
}
|
||||
|
||||
static Property piix4_pm_properties[] = {
|
||||
DEFINE_PROP_UINT32("smb_io_base", PIIX4PMState, smb_io_base, 0),
|
||||
DEFINE_PROP_UINT8("disable_s3", PIIX4PMState, disable_s3, 0),
|
||||
DEFINE_PROP_UINT8("disable_s4", PIIX4PMState, disable_s4, 0),
|
||||
DEFINE_PROP_UINT8("s4_val", PIIX4PMState, s4_val, 2),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
static void piix4_pm_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
||||
|
||||
k->no_hotplug = 1;
|
||||
k->init = piix4_pm_initfn;
|
||||
k->config_write = pm_write_config;
|
||||
k->vendor_id = PCI_VENDOR_ID_INTEL;
|
||||
k->device_id = PCI_DEVICE_ID_INTEL_82371AB_3;
|
||||
k->revision = 0x03;
|
||||
k->class_id = PCI_CLASS_BRIDGE_OTHER;
|
||||
dc->desc = "PM";
|
||||
dc->no_user = 1;
|
||||
dc->vmsd = &vmstate_acpi;
|
||||
dc->props = piix4_pm_properties;
|
||||
}
|
||||
|
||||
static const TypeInfo piix4_pm_info = {
|
||||
.name = "PIIX4_PM",
|
||||
.parent = TYPE_PCI_DEVICE,
|
||||
.instance_size = sizeof(PIIX4PMState),
|
||||
.class_init = piix4_pm_class_init,
|
||||
};
|
||||
|
||||
static void piix4_pm_register_types(void)
|
||||
{
|
||||
type_register_static(&piix4_pm_info);
|
||||
}
|
||||
|
||||
type_init(piix4_pm_register_types)
|
||||
|
||||
static uint64_t gpe_readb(void *opaque, hwaddr addr, unsigned width)
|
||||
{
|
||||
PIIX4PMState *s = opaque;
|
||||
uint32_t val = acpi_gpe_ioport_readb(&s->ar, addr);
|
||||
|
||||
PIIX4_DPRINTF("gpe read %x == %x\n", addr, val);
|
||||
return val;
|
||||
}
|
||||
|
||||
static void gpe_writeb(void *opaque, hwaddr addr, uint64_t val,
|
||||
unsigned width)
|
||||
{
|
||||
PIIX4PMState *s = opaque;
|
||||
|
||||
acpi_gpe_ioport_writeb(&s->ar, addr, val);
|
||||
pm_update_sci(s);
|
||||
|
||||
PIIX4_DPRINTF("gpe write %x <== %d\n", addr, val);
|
||||
}
|
||||
|
||||
static const MemoryRegionOps piix4_gpe_ops = {
|
||||
.read = gpe_readb,
|
||||
.write = gpe_writeb,
|
||||
.valid.min_access_size = 1,
|
||||
.valid.max_access_size = 4,
|
||||
.impl.min_access_size = 1,
|
||||
.impl.max_access_size = 1,
|
||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||
};
|
||||
|
||||
static uint64_t pci_read(void *opaque, hwaddr addr, unsigned int size)
|
||||
{
|
||||
PIIX4PMState *s = opaque;
|
||||
uint32_t val = 0;
|
||||
|
||||
switch (addr) {
|
||||
case PCI_UP_BASE - PCI_HOTPLUG_ADDR:
|
||||
/* Manufacture an "up" value to cause a device check on any hotplug
|
||||
* slot with a device. Extra device checks are harmless. */
|
||||
val = s->pci0_slot_device_present & s->pci0_hotplug_enable;
|
||||
PIIX4_DPRINTF("pci_up_read %x\n", val);
|
||||
break;
|
||||
case PCI_DOWN_BASE - PCI_HOTPLUG_ADDR:
|
||||
val = s->pci0_status.down;
|
||||
PIIX4_DPRINTF("pci_down_read %x\n", val);
|
||||
break;
|
||||
case PCI_EJ_BASE - PCI_HOTPLUG_ADDR:
|
||||
/* No feature defined yet */
|
||||
PIIX4_DPRINTF("pci_features_read %x\n", val);
|
||||
break;
|
||||
case PCI_RMV_BASE - PCI_HOTPLUG_ADDR:
|
||||
val = s->pci0_hotplug_enable;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return val;
|
||||
}
|
||||
|
||||
static void pci_write(void *opaque, hwaddr addr, uint64_t data,
|
||||
unsigned int size)
|
||||
{
|
||||
switch (addr) {
|
||||
case PCI_EJ_BASE - PCI_HOTPLUG_ADDR:
|
||||
acpi_piix_eject_slot(opaque, (uint32_t)data);
|
||||
PIIX4_DPRINTF("pciej write %" HWADDR_PRIx " <== % " PRIu64 "\n",
|
||||
addr, data);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static const MemoryRegionOps piix4_pci_ops = {
|
||||
.read = pci_read,
|
||||
.write = pci_write,
|
||||
.endianness = DEVICE_LITTLE_ENDIAN,
|
||||
.valid = {
|
||||
.min_access_size = 4,
|
||||
.max_access_size = 4,
|
||||
},
|
||||
};
|
||||
|
||||
static int piix4_device_hotplug(DeviceState *qdev, PCIDevice *dev,
|
||||
PCIHotplugState state);
|
||||
|
||||
static void piix4_acpi_system_hot_add_init(MemoryRegion *parent,
|
||||
PCIBus *bus, PIIX4PMState *s)
|
||||
{
|
||||
memory_region_init_io(&s->io_gpe, &piix4_gpe_ops, s, "apci-gpe0",
|
||||
GPE_LEN);
|
||||
memory_region_add_subregion(parent, GPE_BASE, &s->io_gpe);
|
||||
|
||||
memory_region_init_io(&s->io_pci, &piix4_pci_ops, s, "apci-pci-hotplug",
|
||||
PCI_HOTPLUG_SIZE);
|
||||
memory_region_add_subregion(parent, PCI_HOTPLUG_ADDR,
|
||||
&s->io_pci);
|
||||
pci_bus_hotplug(bus, piix4_device_hotplug, &s->dev.qdev);
|
||||
}
|
||||
|
||||
static void enable_device(PIIX4PMState *s, int slot)
|
||||
{
|
||||
s->ar.gpe.sts[0] |= PIIX4_PCI_HOTPLUG_STATUS;
|
||||
s->pci0_slot_device_present |= (1U << slot);
|
||||
}
|
||||
|
||||
static void disable_device(PIIX4PMState *s, int slot)
|
||||
{
|
||||
s->ar.gpe.sts[0] |= PIIX4_PCI_HOTPLUG_STATUS;
|
||||
s->pci0_status.down |= (1U << slot);
|
||||
}
|
||||
|
||||
static int piix4_device_hotplug(DeviceState *qdev, PCIDevice *dev,
|
||||
PCIHotplugState state)
|
||||
{
|
||||
int slot = PCI_SLOT(dev->devfn);
|
||||
PIIX4PMState *s = DO_UPCAST(PIIX4PMState, dev,
|
||||
PCI_DEVICE(qdev));
|
||||
|
||||
/* Don't send event when device is enabled during qemu machine creation:
|
||||
* it is present on boot, no hotplug event is necessary. We do send an
|
||||
* event when the device is disabled later. */
|
||||
if (state == PCI_COLDPLUG_ENABLED) {
|
||||
s->pci0_slot_device_present |= (1U << slot);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (state == PCI_HOTPLUG_ENABLED) {
|
||||
enable_device(s, slot);
|
||||
} else {
|
||||
disable_device(s, slot);
|
||||
}
|
||||
|
||||
pm_update_sci(s);
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue