From nobody Wed May 8 06:28:02 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1552780735867597.2047714424672; Sat, 16 Mar 2019 16:58:55 -0700 (PDT) Received: from localhost ([127.0.0.1]:47987 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h5JCW-00046K-JV for importer@patchew.org; Sat, 16 Mar 2019 19:58:52 -0400 Received: from eggs.gnu.org ([209.51.188.92]:32795) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h5JAs-00032L-Bm for qemu-devel@nongnu.org; Sat, 16 Mar 2019 19:57:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h5IzC-0000pU-4R for qemu-devel@nongnu.org; Sat, 16 Mar 2019 19:45:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37596) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h5IzB-0000p1-Th for qemu-devel@nongnu.org; Sat, 16 Mar 2019 19:45:06 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 7211981F0B; Sat, 16 Mar 2019 23:45:04 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-28.brq.redhat.com [10.40.204.28]) by smtp.corp.redhat.com (Postfix) with ESMTPS id CC14C5ED23; Sat, 16 Mar 2019 23:45:02 +0000 (UTC) From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= To: qemu-devel@nongnu.org Date: Sun, 17 Mar 2019 00:44:55 +0100 Message-Id: <20190316234456.18140-2-philmd@redhat.com> In-Reply-To: <20190316234456.18140-1-philmd@redhat.com> References: <20190316234456.18140-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Sat, 16 Mar 2019 23:45:04 +0000 (UTC) Content-Transfer-Encoding: quoted-printable 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 for-4.1 1/2] hw/isa/southbridge: Add the Cypress 82C693UB chipset 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: Paolo Bonzini , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Richard Henderson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" The CY82C693UB Peripheral Controller contains the following functional bloc= ks: =E2=80=A2 PCI Interface =E2=80=A2 ISA Interface =E2=80=A2 Reset Logic =E2=80=A2 Keyboard Controller =E2=80=A2 Power Management Logic =E2=80=A2 AT Refresh Logic =E2=80=A2 Pre-Read/Post-Write Buffers =E2=80=A2 BIOS ROM Control =E2=80=A2 Timer/Counter Logic =E2=80=A2 DMA Controllers =E2=80=A2 Dual-Channel Enhanced IDE Controller =E2=80=A2 Real-Time-Clock with 32-kHz Oscillator =E2=80=A2 Interrupt Controllers =E2=80=A2 USB Host Controller Signed-off-by: Philippe Mathieu-Daud=C3=A9 --- hw/isa/Kconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hw/isa/Kconfig b/hw/isa/Kconfig index 57e09a0cb8..4988f7671a 100644 --- a/hw/isa/Kconfig +++ b/hw/isa/Kconfig @@ -37,6 +37,19 @@ config VT82C686 select SERIAL_ISA select FDC =20 +config CY82C693UB + bool + select PCI + select ISA_BUS + select PCKBD + select APM + select I8254 + select I8257 + select IDE_PCI + select MC146818RTC + select I8259 + select USB_OHCI + config SMC37C669 bool select ISA_BUS --=20 2.20.1 From nobody Wed May 8 06:28:02 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 15527807395351005.9090466740226; Sat, 16 Mar 2019 16:58:59 -0700 (PDT) Received: from localhost ([127.0.0.1]:47989 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h5JCc-0004AT-EH for importer@patchew.org; Sat, 16 Mar 2019 19:58:58 -0400 Received: from eggs.gnu.org ([209.51.188.92]:32795) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h5JAr-00032L-OS for qemu-devel@nongnu.org; Sat, 16 Mar 2019 19:57:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h5IzF-0000qS-NL for qemu-devel@nongnu.org; Sat, 16 Mar 2019 19:45:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52460) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h5IzE-0000pb-Jx for qemu-devel@nongnu.org; Sat, 16 Mar 2019 19:45:09 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3B4A5309264D; Sat, 16 Mar 2019 23:45:06 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-28.brq.redhat.com [10.40.204.28]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E53D85ED23; Sat, 16 Mar 2019 23:45:04 +0000 (UTC) From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= To: qemu-devel@nongnu.org Date: Sun, 17 Mar 2019 00:44:56 +0100 Message-Id: <20190316234456.18140-3-philmd@redhat.com> In-Reply-To: <20190316234456.18140-1-philmd@redhat.com> References: <20190316234456.18140-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.43]); Sat, 16 Mar 2019 23:45:06 +0000 (UTC) Content-Transfer-Encoding: quoted-printable 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 for-4.1 2/2] hw/alpha/Kconfig: The 264DP machine use a CY82C693UB southbridge 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: Paolo Bonzini , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Richard Henderson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" Signed-off-by: Philippe Mathieu-Daud=C3=A9 --- hw/alpha/Kconfig | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/hw/alpha/Kconfig b/hw/alpha/Kconfig index 22cefd9577..437606fd22 100644 --- a/hw/alpha/Kconfig +++ b/hw/alpha/Kconfig @@ -1,12 +1,9 @@ config DP264 bool + select CY82C693UB imply PCI_DEVICES imply TEST_DEVICES select I82374 - select I8254 - select I8259 select IDE_CMD646 - select MC146818RTC select PCI - select PCKBD select SMC37C669 --=20 2.20.1