[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 2/5] cmd646: Remove IDEBus from CMD646BAR
From: |
BALATON Zoltan |
Subject: |
[Qemu-devel] [PATCH 2/5] cmd646: Remove IDEBus from CMD646BAR |
Date: |
Fri, 11 Jan 2019 01:36:00 +0100 |
The cmd646 io mem ops callbacks only need the IDEBus which is
currently passed via a CMD646BAR struct. No need to wrap it up like
that, we can pass it directly to these callbacks which then allows to
drop the IDEBus from the CMD646BAR.
Signed-off-by: BALATON Zoltan <address@hidden>
---
hw/ide/cmd646.c | 29 ++++++++++++++---------------
include/hw/ide/pci.h | 1 -
2 files changed, 14 insertions(+), 16 deletions(-)
diff --git a/hw/ide/cmd646.c b/hw/ide/cmd646.c
index 41c1831f9a..c24f71e219 100644
--- a/hw/ide/cmd646.c
+++ b/hw/ide/cmd646.c
@@ -53,23 +53,23 @@ static void cmd646_update_irq(PCIDevice *pd);
static uint64_t cmd646_cmd_read(void *opaque, hwaddr addr,
unsigned size)
{
- CMD646BAR *cmd646bar = opaque;
+ IDEBus *bus = opaque;
if (addr != 2 || size != 1) {
return ((uint64_t)1 << (size * 8)) - 1;
}
- return ide_status_read(cmd646bar->bus, addr + 2);
+ return ide_status_read(bus, addr + 2);
}
static void cmd646_cmd_write(void *opaque, hwaddr addr,
uint64_t data, unsigned size)
{
- CMD646BAR *cmd646bar = opaque;
+ IDEBus *bus = opaque;
if (addr != 2 || size != 1) {
return;
}
- ide_cmd_write(cmd646bar->bus, addr + 2, data);
+ ide_cmd_write(bus, addr + 2, data);
}
static const MemoryRegionOps cmd646_cmd_ops = {
@@ -81,15 +81,15 @@ static const MemoryRegionOps cmd646_cmd_ops = {
static uint64_t cmd646_data_read(void *opaque, hwaddr addr,
unsigned size)
{
- CMD646BAR *cmd646bar = opaque;
+ IDEBus *bus = opaque;
if (size == 1) {
- return ide_ioport_read(cmd646bar->bus, addr);
+ return ide_ioport_read(bus, addr);
} else if (addr == 0) {
if (size == 2) {
- return ide_data_readw(cmd646bar->bus, addr);
+ return ide_data_readw(bus, addr);
} else {
- return ide_data_readl(cmd646bar->bus, addr);
+ return ide_data_readl(bus, addr);
}
}
return ((uint64_t)1 << (size * 8)) - 1;
@@ -98,15 +98,15 @@ static uint64_t cmd646_data_read(void *opaque, hwaddr addr,
static void cmd646_data_write(void *opaque, hwaddr addr,
uint64_t data, unsigned size)
{
- CMD646BAR *cmd646bar = opaque;
+ IDEBus *bus = opaque;
if (size == 1) {
- ide_ioport_write(cmd646bar->bus, addr, data);
+ ide_ioport_write(bus, addr, data);
} else if (addr == 0) {
if (size == 2) {
- ide_data_writew(cmd646bar->bus, addr, data);
+ ide_data_writew(bus, addr, data);
} else {
- ide_data_writel(cmd646bar->bus, addr, data);
+ ide_data_writel(bus, addr, data);
}
}
}
@@ -122,10 +122,9 @@ static void setup_cmd646_bar(PCIIDEState *d, int bus_num)
IDEBus *bus = &d->bus[bus_num];
CMD646BAR *bar = &d->cmd646_bar[bus_num];
- bar->bus = bus;
- memory_region_init_io(&bar->cmd, OBJECT(d), &cmd646_cmd_ops, bar,
+ memory_region_init_io(&bar->cmd, OBJECT(d), &cmd646_cmd_ops, bus,
"cmd646-cmd", 4);
- memory_region_init_io(&bar->data, OBJECT(d), &cmd646_data_ops, bar,
+ memory_region_init_io(&bar->data, OBJECT(d), &cmd646_data_ops, bus,
"cmd646-data", 8);
}
diff --git a/include/hw/ide/pci.h b/include/hw/ide/pci.h
index ed723acfb4..013d7937d2 100644
--- a/include/hw/ide/pci.h
+++ b/include/hw/ide/pci.h
@@ -40,7 +40,6 @@ typedef struct BMDMAState {
typedef struct CMD646BAR {
MemoryRegion cmd;
MemoryRegion data;
- IDEBus *bus;
} CMD646BAR;
#define TYPE_PCI_IDE "pci-ide"
--
2.13.7
- [Qemu-devel] [PATCH 0/5] Refactor common PCI IDE functions from CMD646, BALATON Zoltan, 2019/01/10
- [Qemu-devel] [PATCH 2/5] cmd646: Remove IDEBus from CMD646BAR,
BALATON Zoltan <=
- [Qemu-devel] [PATCH 1/5] cmd646: Remove unused variable, BALATON Zoltan, 2019/01/10
- [Qemu-devel] [PATCH 3/5] cmd646: Move PCI IDE specific functions to ide/pci.c, BALATON Zoltan, 2019/01/10
- [Qemu-devel] [PATCH 5/5] sii3112: Remove duplicated code and use PCI IDE ops instead, BALATON Zoltan, 2019/01/10
- [Qemu-devel] [PATCH 4/5] ide: Get rid of CMD646BAR struct, BALATON Zoltan, 2019/01/10
- Re: [Qemu-devel] [PATCH 0/5] Refactor common PCI IDE functions from CMD646, John Snow, 2019/01/15
- Re: [Qemu-devel] [PATCH 0/5] Refactor common PCI IDE functions from CMD646, Mark Cave-Ayland, 2019/01/18
- Re: [Qemu-devel] [PATCH 0/5] Refactor common PCI IDE functions from CMD646, John Snow, 2019/01/21
- Re: [Qemu-devel] [PATCH 0/5] Refactor common PCI IDE functions from CMD646, John Snow, 2019/01/23