From: "Andreas Färber" <afaerber@suse.de>
To: Mark Langsdorf <mark.langsdorf@calxeda.com>
Cc: kwolf@redhat.com, peter.maydell@linaro.org,
qemu-devel@nongnu.org, Rob Herring <rob.herring@calxeda.com>,
Alexander Graf <agraf@suse.de>
Subject: Re: [Qemu-devel] [PATCH v3 1/2] ahci: convert ahci_reset to use AHCIState
Date: Thu, 05 Jan 2012 15:11:12 +0100 [thread overview]
Message-ID: <4F05AF80.3070405@suse.de> (raw)
In-Reply-To: <1325771559-15570-1-git-send-email-mark.langsdorf@calxeda.com>
Am 05.01.2012 14:52, schrieb Mark Langsdorf:
> From: Rob Herring <rob.herring@calxeda.com>
>
> Use AHCIState instead of AHCIPCIState so the function can be used for
> non-PCI based AHCI controllers.
>
> Signed-off-by: Rob Herring <rob.herring@calxeda.com>
> Signed-off-by: Mark Langsdorf <mark.langsdorf@calxeda.com>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Andreas
> ---
> Changes from v1, v2
> None
>
> hw/ide/ahci.c | 14 +++++++-------
> hw/ide/ich.c | 4 ++--
> 2 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
> index 0af201d..135d0ee 100644
> --- a/hw/ide/ahci.c
> +++ b/hw/ide/ahci.c
> @@ -336,7 +336,7 @@ static void ahci_mem_write(void *opaque, target_phys_addr_t addr,
> case HOST_CTL: /* R/W */
> if (val & HOST_CTL_RESET) {
> DPRINTF(-1, "HBA Reset\n");
> - ahci_reset(container_of(s, AHCIPCIState, ahci));
> + ahci_reset(s);
> } else {
> s->control_regs.ghc = (val & 0x3) | HOST_CTL_AHCI_EN;
> ahci_check_irq(s);
> @@ -1199,18 +1199,18 @@ void ahci_uninit(AHCIState *s)
>
> void ahci_reset(void *opaque)
> {
> - struct AHCIPCIState *d = opaque;
> + struct AHCIState *s = opaque;
> AHCIPortRegs *pr;
> int i;
>
> - d->ahci.control_regs.irqstatus = 0;
> - d->ahci.control_regs.ghc = 0;
> + s->control_regs.irqstatus = 0;
> + s->control_regs.ghc = 0;
>
> - for (i = 0; i < d->ahci.ports; i++) {
> - pr = &d->ahci.dev[i].port_regs;
> + for (i = 0; i < s->ports; i++) {
> + pr = &s->dev[i].port_regs;
> pr->irq_stat = 0;
> pr->irq_mask = 0;
> pr->scr_ctl = 0;
> - ahci_reset_port(&d->ahci, i);
> + ahci_reset_port(s, i);
> }
> }
> diff --git a/hw/ide/ich.c b/hw/ide/ich.c
> index 3f7510f..44363ec 100644
> --- a/hw/ide/ich.c
> +++ b/hw/ide/ich.c
> @@ -102,7 +102,7 @@ static int pci_ich9_ahci_init(PCIDevice *dev)
> /* XXX Software should program this register */
> d->card.config[0x90] = 1 << 6; /* Address Map Register - AHCI mode */
>
> - qemu_register_reset(ahci_reset, d);
> + qemu_register_reset(ahci_reset, &d->ahci);
>
> msi_init(dev, 0x50, 1, true, false);
> d->ahci.irq = d->card.irq[0];
> @@ -133,7 +133,7 @@ static int pci_ich9_uninit(PCIDevice *dev)
> d = DO_UPCAST(struct AHCIPCIState, card, dev);
>
> msi_uninit(dev);
> - qemu_unregister_reset(ahci_reset, d);
> + qemu_unregister_reset(ahci_reset, &d->ahci);
> ahci_uninit(&d->ahci);
>
> return 0;
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
next prev parent reply other threads:[~2012-01-05 14:12 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-05 13:52 [Qemu-devel] [PATCH v3 1/2] ahci: convert ahci_reset to use AHCIState Mark Langsdorf
2012-01-05 13:52 ` [Qemu-devel] [PATCH v3 2/2] ahci: add support for non-PCI based controllers Mark Langsdorf
2012-01-05 14:16 ` Andreas Färber
2012-01-05 14:26 ` Alexander Graf
2012-01-05 14:32 ` Andreas Färber
2012-01-05 14:35 ` Mark Langsdorf
2012-01-05 15:11 ` Rob Herring
2012-01-05 15:13 ` Alexander Graf
2012-01-05 15:32 ` Peter Maydell
2012-01-05 15:40 ` Mark Langsdorf
2012-01-05 15:46 ` Rob Herring
2012-01-05 14:11 ` Andreas Färber [this message]
2012-01-05 14:17 ` [Qemu-devel] [PATCH v3 1/2] ahci: convert ahci_reset to use AHCIState Alexander Graf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F05AF80.3070405@suse.de \
--to=afaerber@suse.de \
--cc=agraf@suse.de \
--cc=kwolf@redhat.com \
--cc=mark.langsdorf@calxeda.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rob.herring@calxeda.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.