From patchwork Sun Mar 10 23:53:46 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Philippe_Mathieu-Daud=C3=A9?= X-Patchwork-Id: 10846489 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2FBD7139A for ; Sun, 10 Mar 2019 23:57:28 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 12CB128E60 for ; Sun, 10 Mar 2019 23:57:28 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 024F328E84; Sun, 10 Mar 2019 23:57:27 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id AA15528E60 for ; Sun, 10 Mar 2019 23:57:27 +0000 (UTC) Received: from localhost ([127.0.0.1]:52653 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h38Jr-0006vE-1d for patchwork-qemu-devel@patchwork.kernel.org; Sun, 10 Mar 2019 19:57:27 -0400 Received: from eggs.gnu.org ([209.51.188.92]:42508) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h38HI-0004gB-H3 for qemu-devel@nongnu.org; Sun, 10 Mar 2019 19:54:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h38HH-0002P3-Il for qemu-devel@nongnu.org; Sun, 10 Mar 2019 19:54:48 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44140) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h38H9-0002JY-N0; Sun, 10 Mar 2019 19:54:40 -0400 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 771EA85365; Sun, 10 Mar 2019 23:54:37 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-18.brq.redhat.com [10.40.204.18]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 01F978BE65; Sun, 10 Mar 2019 23:54:28 +0000 (UTC) From: =?utf-8?q?Philippe_Mathieu-Daud=C3=A9?= To: "Michael S . Tsirkin" , Thomas Huth , Paolo Bonzini , Igor Mammedov , qemu-devel@nongnu.org, =?utf-8?q?Herv=C3=A9_Poussineau?= Date: Mon, 11 Mar 2019 00:53:46 +0100 Message-Id: <20190310235351.1863-4-philmd@redhat.com> In-Reply-To: <20190310235351.1863-1-philmd@redhat.com> References: <20190310235351.1863-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Sun, 10 Mar 2019 23:54:37 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 3/8] hw/southbridge: Add the PIIX chipset to Kconfig X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Eduardo Habkost , "open list:IDE" , Aleksandar Rikalo , =?utf-8?q?Philippe_Mathieu-Daud?= =?utf-8?q?=C3=A9?= , Aleksandar Markovic , John Snow , Aurelien Jarno Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP The PIIX (Intel 82371FB) is a bridge between PCI <-> ISA. It contains: - IDE interface (PIO and burst transfers) - one 82c54 timer (and speaker tone output) - two 82c59 interrupts controllers - two 8237 DMA controllers - Power Management (programmable SMI) - NMI Signed-off-by: Philippe Mathieu-Daudé --- hw/ide/Kconfig | 1 + hw/isa/Kconfig | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/hw/ide/Kconfig b/hw/ide/Kconfig index ab47b6a7a3..1d997240c1 100644 --- a/hw/ide/Kconfig +++ b/hw/ide/Kconfig @@ -17,6 +17,7 @@ config IDE_ISA config IDE_PIIX bool + select IDE_ISA select IDE_PCI select IDE_QDEV diff --git a/hw/isa/Kconfig b/hw/isa/Kconfig index 57e09a0cb8..681e6f1bce 100644 --- a/hw/isa/Kconfig +++ b/hw/isa/Kconfig @@ -24,6 +24,19 @@ config PC87312 select FDC select IDE_ISA +config PIIX + bool + select PCI_PIIX + select IDE_PIIX + select I8254 + select I8259 + select PCSPK + select I8257 + #select PM_PIIX + #select SMI_PIIX + #select NMI_PIIX + select ISA_BUS + config PIIX4 bool # For historical reasons, SuperIO devices are created in the board