From patchwork Thu Apr 9 01:49:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alistair Popple X-Patchwork-Id: 1268461 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48yPGJ6dxZz9sSk for ; Thu, 9 Apr 2020 11:49:44 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=popple.id.au Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 48yPGJ3M8KzDr7G for ; Thu, 9 Apr 2020 11:49:44 +1000 (AEST) X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 48yPGD6wNCzDr6d for ; Thu, 9 Apr 2020 11:49:40 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=popple.id.au Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 48yPGD2VsGz9sSj; Thu, 9 Apr 2020 11:49:40 +1000 (AEST) From: Alistair Popple To: pdbg@lists.ozlabs.org Date: Thu, 9 Apr 2020 11:49:29 +1000 Message-Id: <20200409014929.30111-1-alistair@popple.id.au> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [Pdbg] [PATCH] p9.dts: Fix mcbist index X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "mailing list for https://github.com/open-power/pdbg development" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: amitay@ozlabs.org Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" Commit 4bf5a1087f55 ("dts: Fix index for mcbist targets") fixed up the mcbist indicies but had them reveresed on the second processor. The tests were correctly updated and caught this problem. Signed-off-by: Alistair Popple Reviewed-by: Amitay Isaacs --- p9.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/p9.dts b/p9.dts index f8cb88b..a292803 100644 --- a/p9.dts +++ b/p9.dts @@ -1890,7 +1890,7 @@ mcbist { compatible = "ibm,power9-mcbist"; - index = < 0x01 >; + index = < 0x00 >; }; }; }; @@ -1929,7 +1929,7 @@ mcbist { compatible = "ibm,power9-mcbist"; - index = < 0x00 >; + index = < 0x01 >; }; }; };