Skip to content

Commit

Permalink
hw/apm.c: Replace register_ioport_*
Browse files Browse the repository at this point in the history
Replace all register_ioport_*() with a MemoryRegion.
This permits to use the new Memory stuff like listeners.

Moreover, the PCI device is added as an argument for apm_init(),
so we can register IO inside the PCI IO address space.

Signed-off-by: Julien Grall <julien.grall@citrix.com>
Acked-by: Avi Kivity <avi@redhat.com>
[AF: Rebased onto hwaddr and q35]
Signed-off-by: Andreas Färber <afaerber@suse.de>
  • Loading branch information
Julien Grall authored and afaerber committed Dec 4, 2012
1 parent ac10027 commit 42d8a3c
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion hw/acpi_piix4.c
Expand Up @@ -438,7 +438,7 @@ static int piix4_pm_initfn(PCIDevice *dev)
pci_conf[0x3d] = 0x01; // interrupt pin 1

/* APM */
apm_init(&s->apm, apm_ctrl_changed, s);
apm_init(dev, &s->apm, apm_ctrl_changed, s);

register_ioport_write(ACPI_DBG_IO_ADDR, 4, 4, acpi_dbg_writel, s);

Expand Down
23 changes: 18 additions & 5 deletions hw/apm.c
Expand Up @@ -22,6 +22,7 @@

#include "apm.h"
#include "hw.h"
#include "pci.h"

//#define DEBUG

Expand All @@ -35,7 +36,8 @@
#define APM_CNT_IOPORT 0xb2
#define APM_STS_IOPORT 0xb3

static void apm_ioport_writeb(void *opaque, uint32_t addr, uint32_t val)
static void apm_ioport_writeb(void *opaque, hwaddr addr, uint64_t val,
unsigned size)
{
APMState *apm = opaque;
addr &= 1;
Expand All @@ -51,7 +53,7 @@ static void apm_ioport_writeb(void *opaque, uint32_t addr, uint32_t val)
}
}

static uint32_t apm_ioport_readb(void *opaque, uint32_t addr)
static uint64_t apm_ioport_readb(void *opaque, hwaddr addr, unsigned size)
{
APMState *apm = opaque;
uint32_t val;
Expand All @@ -78,12 +80,23 @@ const VMStateDescription vmstate_apm = {
}
};

void apm_init(APMState *apm, apm_ctrl_changed_t callback, void *arg)
static const MemoryRegionOps apm_ops = {
.read = apm_ioport_readb,
.write = apm_ioport_writeb,
.impl = {
.min_access_size = 1,
.max_access_size = 1,
},
};

void apm_init(PCIDevice *dev, APMState *apm, apm_ctrl_changed_t callback,
void *arg)
{
apm->callback = callback;
apm->arg = arg;

/* ioport 0xb2, 0xb3 */
register_ioport_write(APM_CNT_IOPORT, 2, 1, apm_ioport_writeb, apm);
register_ioport_read(APM_CNT_IOPORT, 2, 1, apm_ioport_readb, apm);
memory_region_init_io(&apm->io, &apm_ops, apm, "apm-io", 2);
memory_region_add_subregion(pci_address_space_io(dev), APM_CNT_IOPORT,
&apm->io);
}
5 changes: 4 additions & 1 deletion hw/apm.h
Expand Up @@ -4,6 +4,7 @@
#include <stdint.h>
#include "qemu-common.h"
#include "hw.h"
#include "memory.h"

typedef void (*apm_ctrl_changed_t)(uint32_t val, void *arg);

Expand All @@ -13,9 +14,11 @@ typedef struct APMState {

apm_ctrl_changed_t callback;
void *arg;
MemoryRegion io;
} APMState;

void apm_init(APMState *s, apm_ctrl_changed_t callback, void *arg);
void apm_init(PCIDevice *dev, APMState *s, apm_ctrl_changed_t callback,
void *arg);

extern const VMStateDescription vmstate_apm;

Expand Down
2 changes: 1 addition & 1 deletion hw/lpc_ich9.c
Expand Up @@ -472,7 +472,7 @@ static int ich9_lpc_initfn(PCIDevice *d)
lpc->isa_bus = isa_bus;

ich9_cc_init(lpc);
apm_init(&lpc->apm, ich9_apm_ctrl_changed, lpc);
apm_init(d, &lpc->apm, ich9_apm_ctrl_changed, lpc);
return 0;
}

Expand Down
2 changes: 1 addition & 1 deletion hw/vt82c686.c
Expand Up @@ -427,7 +427,7 @@ static int vt82c686b_pm_initfn(PCIDevice *dev)
register_ioport_write(s->smb_io_base, 0xf, 1, smb_ioport_writeb, &s->smb);
register_ioport_read(s->smb_io_base, 0xf, 1, smb_ioport_readb, &s->smb);

apm_init(&s->apm, NULL, s);
apm_init(dev, &s->apm, NULL, s);

acpi_pm_tmr_init(&s->ar, pm_tmr_timer);
acpi_pm1_cnt_init(&s->ar);
Expand Down

0 comments on commit 42d8a3c

Please sign in to comment.