All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Jason Baron <jbaron@redhat.com>
Cc: agraf@suse.de, aliguori@us.ibm.com, juzhang@redhat.com,
	jan.kiszka@siemens.com, qemu-devel@nongnu.org, armbru@redhat.com,
	blauwirbel@gmail.com, yamahata@valinux.co.jp,
	alex.williamson@redhat.com, kevin@koconnor.net, avi@redhat.com,
	mkletzan@redhat.com, pbonzini@redhat.com, lcapitulino@redhat.com,
	afaerber@suse.de, kraxel@redhat.com
Subject: Re: [Qemu-devel] [PATCH v1 02/13] Back out add of i21154
Date: Wed, 31 Oct 2012 11:54:14 +0200	[thread overview]
Message-ID: <20121031095414.GA12521@redhat.com> (raw)
In-Reply-To: <75ef48ef0d944c3c51f71d3476dad9cb15e41abc.1351561225.git.jbaron@redhat.com>

On Mon, Oct 29, 2012 at 10:11:24PM -0400, Jason Baron wrote:
> From: Jason Baron <jbaron@redhat.com>
> 
> As pointed out by Andreas Färber this is covered by dec_pci.c.
> 
> Signed-off-by: Jason Baron <jbaron@redhat.com>

Revision is different though, and generally dec_pci looks like
it needs some fixups. For now I'll just drop that patch from the tree.

> ---
>  hw/Makefile.objs |    2 +-
>  hw/i21154.c      |  113 ------------------------------------------------------
>  hw/i21154.h      |    9 ----
>  3 files changed, 1 insertions(+), 123 deletions(-)
>  delete mode 100644 hw/i21154.c
>  delete mode 100644 hw/i21154.h
> 
> diff --git a/hw/Makefile.objs b/hw/Makefile.objs
> index e951eba..a816e7e 100644
> --- a/hw/Makefile.objs
> +++ b/hw/Makefile.objs
> @@ -9,7 +9,7 @@ common-obj-$(CONFIG_PCI) += shpc.o
>  common-obj-$(CONFIG_PCI) += slotid_cap.o
>  common-obj-$(CONFIG_PCI) += pci_host.o pcie_host.o
>  common-obj-$(CONFIG_PCI) += ioh3420.o xio3130_upstream.o xio3130_downstream.o
> -common-obj-$(CONFIG_PCI) += i82801b11.o i21154.o
> +common-obj-$(CONFIG_PCI) += i82801b11.o
>  common-obj-y += watchdog.o
>  common-obj-$(CONFIG_ISA_MMIO) += isa_mmio.o
>  common-obj-$(CONFIG_ECC) += ecc.o
> diff --git a/hw/i21154.c b/hw/i21154.c
> deleted file mode 100644
> index 93faa59..0000000
> --- a/hw/i21154.c
> +++ /dev/null
> @@ -1,113 +0,0 @@
> -/*
> - * Copyright (c) 2006 Fabrice Bellard
> - *
> - * Permission is hereby granted, free of charge, to any person obtaining a copy
> - * of this software and associated documentation files (the "Software"), to deal
> - * in the Software without restriction, including without limitation the rights
> - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> - * copies of the Software, and to permit persons to whom the Software is
> - * furnished to do so, subject to the following conditions:
> - *
> - * The above copyright notice and this permission notice shall be included in
> - * all copies or substantial portions of the Software.
> - *
> - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
> - * THE SOFTWARE.
> - */
> -/*
> - * QEMU i21154 PCI Bridge Emulation
> - *
> - *  Copyright (c) 2009, 2010, 2011
> - *                Isaku Yamahata <yamahata at valinux co jp>
> - *                VA Linux Systems Japan K.K.
> - *  Copyright (C) 2012 Jason Baron <jbaron@redhat.com>
> - *
> - * This library is free software; you can redistribute it and/or
> - * modify it under the terms of the GNU Lesser General Public
> - * License as published by the Free Software Foundation; either
> - * version 2 of the License, or (at your option) any later version.
> - *
> - * 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/>
> - */
> -
> -#include "i21154.h"
> -#include "pci_ids.h"
> -#include "pci.h"
> -#include "pci_bridge.h"
> -#include "pci_internals.h"
> -
> -/* i21154 pci bridge*/
> -
> -typedef struct I21154Bridge {
> -    PCIBridge br;
> -} I21154Bridge;
> -
> -static int i21154_bridge_initfn(PCIDevice *d)
> -{
> -    int rc;
> -
> -    rc = pci_bridge_initfn(d);
> -    if (rc < 0) {
> -        return rc;
> -    }
> -
> -    return 0;
> -}
> -
> -#define I21154_REV            0x05
> -#define I21154_PI             0x00
> -
> -static void i21154_bridge_class_init(ObjectClass *klass, void *data)
> -{
> -    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
> -
> -    k->is_bridge = 1;
> -    k->vendor_id = PCI_VENDOR_ID_DEC;
> -    k->device_id = PCI_DEVICE_ID_DEC_21154;
> -    k->revision = I21154_REV;
> -    k->init = i21154_bridge_initfn;
> -}
> -
> -static const TypeInfo i21154_bridge_info = {
> -    .name          = "i21154-bridge",
> -    .parent        = TYPE_PCI_DEVICE,
> -    .instance_size = sizeof(I21154Bridge),
> -    .class_init    = i21154_bridge_class_init,
> -};
> -
> -PCIBridge *i21154_init(PCIBus *bus, int devfn, const char *bus_name,
> -                              bool multifunction)
> -{
> -    PCIDevice *d;
> -    PCIBridge *br;
> -    DeviceState *qdev;
> -
> -    d = pci_create_multifunction(bus, devfn, multifunction, "i21154-bridge");
> -    if (!d) {
> -        return NULL;
> -    }
> -    br = DO_UPCAST(PCIBridge, dev, d);
> -    qdev = &br->dev.qdev;
> -
> -    pci_bridge_map_irq(br, bus_name, pci_swizzle_map_irq_fn);
> -    qdev_init_nofail(qdev);
> -
> -    return br;
> -}
> -
> -static void i21154_register(void)
> -{
> -    type_register_static(&i21154_bridge_info);
> -}
> -type_init(i21154_register);
> diff --git a/hw/i21154.h b/hw/i21154.h
> deleted file mode 100644
> index 0cf8753..0000000
> --- a/hw/i21154.h
> +++ /dev/null
> @@ -1,9 +0,0 @@
> -#ifndef QEMU_I21154_H
> -#define QEMU_I21154_H
> -
> -#include "pci.h"
> -
> -PCIBridge *i21154_init(PCIBus *bus, int devfn, const char *bus_name,
> -                              bool multifunction);
> -
> -#endif /* QEMU_I21154_H */
> -- 
> 1.7.1

  reply	other threads:[~2012-10-31  9:52 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-30  2:11 [Qemu-devel] [PATCH v1 00/13] q35 patches for pci tree Jason Baron
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 01/13] pc/piix_pci: factor out smram/pam logic Jason Baron
2012-10-30 19:07   ` Anthony Liguori
2012-10-30 20:26     ` Andreas Färber
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 03/13] blockdev: Introduce QEMUMachine->default_drive_if Jason Baron
2012-10-30 19:08   ` Anthony Liguori
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 02/13] Back out add of i21154 Jason Baron
2012-10-31  9:54   ` Michael S. Tsirkin [this message]
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 04/13] blockdev: Introduce IF_AHCI Jason Baron
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 05/13] pc, pc_piix: split out pc nic initialization Jason Baron
2012-10-30 19:09   ` Anthony Liguori
2012-10-31  9:57   ` Michael S. Tsirkin
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 06/13] pc: Move ioapic_init() from pc_piix.c to pc.c Jason Baron
2012-10-31 10:02   ` Michael S. Tsirkin
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 07/13] q35: Introduce q35 pc based chipset emulator Jason Baron
2012-10-30 19:18   ` Anthony Liguori
2012-10-31 10:04     ` Michael S. Tsirkin
2012-10-31 12:53       ` Anthony Liguori
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 09/13] q35: Add kvmclock support Jason Baron
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 08/13] q35: Suppress SMM BIOS initialization under KVM Jason Baron
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 10/13] Add a fallback bios file search, if -L fails Jason Baron
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 11/13] q35: automatically load the q35 dsdt table Jason Baron
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 12/13] q35: fill in usb pci slots with -usb Jason Baron
2012-10-30  6:34   ` Gerd Hoffmann
2012-10-30 15:19     ` Jason Baron
2012-10-30 16:19       ` Gerd Hoffmann
2012-10-30 18:00         ` Jason Baron
2012-10-30  2:11 ` [Qemu-devel] [PATCH v1 13/13] Fixup q35/ich9 Licenses Jason Baron
2012-10-31  8:59   ` Michael S. Tsirkin
2012-10-31  9:34     ` Isaku Yamahata
2012-10-31  9:57       ` Michael S. Tsirkin
2012-10-30 19:20 ` [Qemu-devel] [PATCH v1 00/13] q35 patches for pci tree Anthony Liguori
2012-10-31  8:42   ` Michael S. Tsirkin
2012-10-31 12:55     ` Anthony Liguori
2012-10-31 14:42       ` Jason Baron

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=20121031095414.GA12521@redhat.com \
    --to=mst@redhat.com \
    --cc=afaerber@suse.de \
    --cc=agraf@suse.de \
    --cc=alex.williamson@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=armbru@redhat.com \
    --cc=avi@redhat.com \
    --cc=blauwirbel@gmail.com \
    --cc=jan.kiszka@siemens.com \
    --cc=jbaron@redhat.com \
    --cc=juzhang@redhat.com \
    --cc=kevin@koconnor.net \
    --cc=kraxel@redhat.com \
    --cc=lcapitulino@redhat.com \
    --cc=mkletzan@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=yamahata@valinux.co.jp \
    /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.