From nobody Fri Nov 7 20:19:07 2025 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 1548841850361995.5976467727253; Wed, 30 Jan 2019 01:50:50 -0800 (PST) Received: from localhost ([127.0.0.1]:35030 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gomW1-0006mV-E7 for importer@patchew.org; Wed, 30 Jan 2019 04:50:41 -0500 Received: from eggs.gnu.org ([209.51.188.92]:44293) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gomPR-0002E8-C9 for qemu-devel@nongnu.org; Wed, 30 Jan 2019 04:43:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gomPP-0004ao-Fr for qemu-devel@nongnu.org; Wed, 30 Jan 2019 04:43:53 -0500 Received: from mx1.redhat.com ([209.132.183.28]:40280) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gomPN-0004IM-PX; Wed, 30 Jan 2019 04:43:51 -0500 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 9A65880511; Wed, 30 Jan 2019 09:43:22 +0000 (UTC) Received: from thuth.com (ovpn-116-210.ams2.redhat.com [10.36.116.210]) by smtp.corp.redhat.com (Postfix) with ESMTP id EB9A4600CC; Wed, 30 Jan 2019 09:43:18 +0000 (UTC) From: Thomas Huth To: qemu-devel@nongnu.org, yang.zhong@intel.com Date: Wed, 30 Jan 2019 10:43:06 +0100 Message-Id: <1548841387-7670-5-git-send-email-thuth@redhat.com> In-Reply-To: <1548841387-7670-1-git-send-email-thuth@redhat.com> References: <3f01a301-d639-dbe7-f522-42a50e2d443e@redhat.com> <1548841387-7670-1-git-send-email-thuth@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Wed, 30 Jan 2019 09:43:22 +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] [RFC PATCH 4/5] ppc: Express dependencies of the Sam460EX machines with 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: pbonzini@redhat.com, qemu-ppc@nongnu.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Most of the dependencies are now directly selected by the SAM460EX switch. We can drop CONFIG_VGA_CIRRUS since this device is already selected automatically when CONFIG_PCI_DEVICES is set. Cc: BALATON Zoltan Signed-off-by: Thomas Huth Reviewed-by: BALATON Zoltan Reviewed-by: Paolo Bonzini --- default-configs/ppc-softmmu.mak | 10 ---------- hw/display/Kconfig | 1 + hw/ppc/Kconfig | 12 ++++++++++++ hw/usb/Kconfig | 2 +- 4 files changed, 14 insertions(+), 11 deletions(-) diff --git a/default-configs/ppc-softmmu.mak b/default-configs/ppc-softmmu.= mak index 513a8e9..5265d8a 100644 --- a/default-configs/ppc-softmmu.mak +++ b/default-configs/ppc-softmmu.mak @@ -25,16 +25,6 @@ CONFIG_PCI_EXPRESS=3Dy =20 # For Sam460ex CONFIG_SAM460EX=3Dy -CONFIG_USB_EHCI_SYSBUS=3Dy -CONFIG_SM501=3Dy -CONFIG_DDC=3Dy -CONFIG_IDE_SII3112=3Dy -CONFIG_I2C=3Dy -CONFIG_AT24C=3Dy -CONFIG_BITBANG_I2C=3Dy -CONFIG_M41T80=3Dy -CONFIG_VGA_CIRRUS=3Dy -CONFIG_SMBUS_EEPROM=3Dy =20 # For Macs CONFIG_MAC_OLDWORLD=3Dy diff --git a/hw/display/Kconfig b/hw/display/Kconfig index c784fe8..f8e6136 100644 --- a/hw/display/Kconfig +++ b/hw/display/Kconfig @@ -76,6 +76,7 @@ config MILKYMIST_TMU2 config SM501 bool depends on I2C + select DDC =20 config TCX bool diff --git a/hw/ppc/Kconfig b/hw/ppc/Kconfig index f6b4206..8bd25ed 100644 --- a/hw/ppc/Kconfig +++ b/hw/ppc/Kconfig @@ -24,9 +24,21 @@ config PPC440 =20 config PPC4XX bool + select BITBANG_I2C + select PCI =20 config SAM460EX bool + select AT24C + select PFLASH_CFI01 + select IDE_SII3112 + select ISA_BUS # FIXME: Currently required for IDE_SII3112 + select M41T80 + select PPC440 + select SM501 + select SMBUS_EEPROM + select USB_EHCI_SYSBUS + select USB_OHCI =20 config PREP bool diff --git a/hw/usb/Kconfig b/hw/usb/Kconfig index a1b7acb..871ea47 100644 --- a/hw/usb/Kconfig +++ b/hw/usb/Kconfig @@ -21,7 +21,7 @@ config USB_EHCI =20 config USB_EHCI_SYSBUS bool - select USB + select USB_EHCI =20 config USB_XHCI bool --=20 1.8.3.1