From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54128) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPNqm-00071Y-VW for qemu-devel@nongnu.org; Thu, 26 Sep 2013 22:32:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VPNqh-0007Cb-4a for qemu-devel@nongnu.org; Thu, 26 Sep 2013 22:32:12 -0400 Received: from mail-ee0-x22d.google.com ([2a00:1450:4013:c00::22d]:62596) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPNqg-0007CP-Tt for qemu-devel@nongnu.org; Thu, 26 Sep 2013 22:32:07 -0400 Received: by mail-ee0-f45.google.com with SMTP id c50so914826eek.32 for ; Thu, 26 Sep 2013 19:32:06 -0700 (PDT) Sender: =?UTF-8?B?w4Frb3MgS292w6Fjcw==?= From: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= Date: Fri, 27 Sep 2013 04:30:39 +0200 Message-Id: <1380249092-4775-19-git-send-email-akoskovacs@gmx.com> In-Reply-To: <1380249092-4775-1-git-send-email-akoskovacs@gmx.com> References: <1380249092-4775-1-git-send-email-akoskovacs@gmx.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [v2 18/71] hw/intc/Makefile.objs: Make CONFIG_ARMV7_NVIC List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?=C3=81kos=20Kov=C3=A1cs?= Signed-off-by: Ákos Kovács --- hw/intc/Kconfig | 32 ++++++++++++++++++++++++++++++++ hw/intc/Makefile.objs | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 hw/intc/Kconfig diff --git a/hw/intc/Kconfig b/hw/intc/Kconfig new file mode 100644 index 0000000..40d8ebc --- /dev/null +++ b/hw/intc/Kconfig @@ -0,0 +1,32 @@ +config HEATHROW_PIC + bool + +config I8259 + bool + +config PL190 + bool + +config APIC + bool + select IOAPIC + +config ARM_GIC + bool + +config ARM_GIC_KVM + bool + depends on KVM + +config IOAPIC + bool + +config OPENPICS + bool + +config OPENPIC_KVM + bool + +config ARMV7M_NVIC + bool + select ARM_GIC diff --git a/hw/intc/Makefile.objs b/hw/intc/Makefile.objs index 2851eed..07f8302 100644 --- a/hw/intc/Makefile.objs +++ b/hw/intc/Makefile.objs @@ -15,7 +15,7 @@ common-obj-$(CONFIG_OPENPIC) += openpic.o obj-$(CONFIG_APIC) += apic.o apic_common.o obj-$(CONFIG_ARM_GIC_KVM) += arm_gic_kvm.o -obj-$(CONFIG_STELLARIS) += armv7m_nvic.o +obj-$(CONFIG_ARMV7M_NVIC) += armv7m_nvic.o obj-$(CONFIG_EXYNOS4) += exynos4210_gic.o exynos4210_combiner.o obj-$(CONFIG_GRLIB) += grlib_irqmp.o obj-$(CONFIG_IOAPIC) += ioapic.o -- 1.8.1.2