From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59085) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgU9S-00082X-Sl for qemu-devel@nongnu.org; Fri, 10 Apr 2015 04:19:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YgU9O-00080t-Oo for qemu-devel@nongnu.org; Fri, 10 Apr 2015 04:18:58 -0400 Received: from [59.151.112.132] (port=29628 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgU9O-0007zt-Bd for qemu-devel@nongnu.org; Fri, 10 Apr 2015 04:18:54 -0400 From: Chen Fan Date: Fri, 10 Apr 2015 16:18:04 +0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH v3 0/2] remove icc bus/bridge List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: guz.fnst@cn.fujitsu.com, imammedo@redhat.com, zhugh.fnst@cn.fujitsu.com, afaerber@suse.de, isimatu.yasuaki@jp.fujitsu.com ICC Bus was used for providing a hotpluggable bus for APIC and CPU, but new we use HotplugHandler to make hotplug. so ICC Bus is unnecessary. this codes has passed the new pc-cpu-test. and I have tested with kvm along with kernel_irqchip=on/off, It works fine. v2-v3: 1. replace init apic by object_new() 2. add reset apic at the time of CPU reset Chen Fan (2): apic: move apic mmio register to each apic realizefn cpu/apic: drop icc bus/bridge/ default-configs/i386-softmmu.mak | 1 - default-configs/x86_64-softmmu.mak | 1 - hw/cpu/Makefile.objs | 2 - hw/cpu/icc_bus.c | 118 ------------------------------------- hw/i386/pc.c | 26 ++------ hw/i386/pc_piix.c | 9 +-- hw/i386/pc_q35.c | 9 +-- hw/intc/apic.c | 6 +- hw/intc/apic_common.c | 16 +++-- include/hw/cpu/icc_bus.h | 82 -------------------------- include/hw/i386/apic_internal.h | 5 +- include/hw/i386/pc.h | 2 +- target-i386/cpu.c | 13 ++-- 13 files changed, 29 insertions(+), 261 deletions(-) delete mode 100644 hw/cpu/icc_bus.c delete mode 100644 include/hw/cpu/icc_bus.h -- 1.9.3