From patchwork Fri Jun 24 22:47:25 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Benjamin Herrenschmidt X-Patchwork-Id: 640456 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3rbtlx4gL1z9s9N for ; Sat, 25 Jun 2016 08:48:29 +1000 (AEST) Received: from ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 3rbtlx3sfCzDqlh for ; Sat, 25 Jun 2016 08:48:29 +1000 (AEST) X-Original-To: skiboot@lists.ozlabs.org Delivered-To: skiboot@lists.ozlabs.org Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3rbtlc52WXzDqlN for ; Sat, 25 Jun 2016 08:48:12 +1000 (AEST) Received: from pasglop.au.ibm.com (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.13.8) with ESMTP id u5OMm2Mb022384; Fri, 24 Jun 2016 17:48:07 -0500 From: Benjamin Herrenschmidt To: skiboot@lists.ozlabs.org Date: Sat, 25 Jun 2016 08:47:25 +1000 Message-Id: <1466808476-32690-2-git-send-email-benh@kernel.crashing.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1466808476-32690-1-git-send-email-benh@kernel.crashing.org> References: <1466808476-32690-1-git-send-email-benh@kernel.crashing.org> Subject: [Skiboot] [PATCH 02/33] chip: Add simics specific quirks X-BeenThere: skiboot@lists.ozlabs.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Mailing list for skiboot development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Neuling MIME-Version: 1.0 Errors-To: skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Skiboot" From: Michael Neuling Use that instead of mambo. Simics supports the F000F, so remove that quirk. Signed-off-by: Michael Neuling Signed-off-by: Benjamin Herrenschmidt --- core/chip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/chip.c b/core/chip.c index c9ab779..b9297e1 100644 --- a/core/chip.c +++ b/core/chip.c @@ -82,7 +82,8 @@ void init_chips(void) prlog(PR_NOTICE, "CHIP: Detected Mambo simulator\n"); } if (dt_find_by_path(dt_root, "/simics")) { - proc_chip_quirks |= QUIRK_SIMICS; + proc_chip_quirks |= QUIRK_SIMICS | QUIRK_NO_CHIPTOD + | QUIRK_NO_PBA | QUIRK_NO_OCC_IRQ; prlog(PR_NOTICE, "CHIP: Detected Simics simulator\n"); } if (dt_node_is_compatible(dt_root, "qemu,powernv")) {