2 * QEMU PC APM controller Emulation
3 * This is split out from acpi.c
5 * Copyright (c) 2006 Fabrice Bellard
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License version 2 as published by the Free Software Foundation.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>
19 * Contributions after 2012-01-13 are licensed under the terms of the
20 * GNU GPL, version 2 or (at your option) any later version.
29 # define APM_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
31 # define APM_DPRINTF(format, ...) do { } while (0)
34 /* fixed I/O location */
35 #define APM_CNT_IOPORT 0xb2
36 #define APM_STS_IOPORT 0xb3
38 static void apm_ioport_writeb(void *opaque, uint32_t addr, uint32_t val)
40 APMState *apm = opaque;
42 APM_DPRINTF("apm_ioport_writeb addr=0x%x val=0x%02x\n", addr, val);
47 (apm->callback)(val, apm->arg);
54 static uint32_t apm_ioport_readb(void *opaque, uint32_t addr)
56 APMState *apm = opaque;
65 APM_DPRINTF("apm_ioport_readb addr=0x%x val=0x%02x\n", addr, val);
69 const VMStateDescription vmstate_apm = {
72 .minimum_version_id = 1,
73 .minimum_version_id_old = 1,
74 .fields = (VMStateField[]) {
75 VMSTATE_UINT8(apmc, APMState),
76 VMSTATE_UINT8(apms, APMState),
81 void apm_init(APMState *apm, apm_ctrl_changed_t callback, void *arg)
83 apm->callback = callback;
86 /* ioport 0xb2, 0xb3 */
87 register_ioport_write(APM_CNT_IOPORT, 2, 1, apm_ioport_writeb, apm);
88 register_ioport_read(APM_CNT_IOPORT, 2, 1, apm_ioport_readb, apm);