From patchwork Fri Jun 1 06:30:49 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 923780 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.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 40xvf73yRqz9s0W for ; Fri, 1 Jun 2018 16:33:03 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="KwFMcPiD"; dkim-atps=neutral Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 40xvf72CtWzF0Rs for ; Fri, 1 Jun 2018 16:33:03 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="KwFMcPiD"; dkim-atps=neutral X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 40xvc45G6HzDrbn for ; Fri, 1 Jun 2018 16:31:16 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.b="KwFMcPiD"; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPSA id 40xvc42pH4z9s08; Fri, 1 Jun 2018 16:31:16 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ozlabs.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ozlabs.org; s=201707; t=1527834676; bh=rKR8e8hQW8P/pJDN+prPm9KyETjclutnZ6hKWnH4xyA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KwFMcPiDQx061jiDtiVOP6kmpTNYvYgkcg85JkEERWz/2Fy///QhDpLqqWU3gvcCb w6SoElAlRlREDBq53ElDPHa7XDTDWMbRlzg6a2knY5+SpLZffFQRnhNgNlod48uYeB J4F3Um9tAc9UXamuv/GvbElZwLY+fsHW2u+iwSuBv05fHuwR7jsItHnmJTI3WaKBcC 3JNentMgV5Psq4T/YOWtJhdYChO5gR4mvngtKZYRWOYlrJyzwR8lfPxITDrOjaDLmW chyIrAQvyF2kc4/DrOtO0cdcXaLBpyvwdwR3HKdca0ugUa8gozB7DGo4CbUtiTC0RV yXgrEYXIBrATQ== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Fri, 1 Jun 2018 16:30:49 +1000 Message-Id: <20180601063050.19286-7-amitay@ozlabs.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180601063050.19286-1-amitay@ozlabs.org> References: <20180601063050.19286-1-amitay@ozlabs.org> Subject: [Pdbg] [PATCH v2 6/7] dts: Fix more warnings from dtc X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.26 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 Isaacs MIME-Version: 1.0 Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" Signed-off-by: Amitay Isaacs Reviewed-by: Alistair Popple --- p8-fsi.dts.m4 | 4 +++- p8-i2c.dts.m4 | 2 ++ p9-fsi.dtsi.m4 | 6 ++++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/p8-fsi.dts.m4 b/p8-fsi.dts.m4 index 5b83781..16dbe3a 100644 --- a/p8-fsi.dts.m4 +++ b/p8-fsi.dts.m4 @@ -50,8 +50,10 @@ }; hmfsi@180000 { + #address-cells = <0x2>; + #size-cells = <0x1>; compatible = "ibm,power8-opb-hmfsi"; - reg = <0x180000 0x80000>; + reg = <0x0 0x180000 0x80000>; port = <0x2>; index = <0x2>; diff --git a/p8-i2c.dts.m4 b/p8-i2c.dts.m4 index b6d2ddc..f1fcbd3 100644 --- a/p8-i2c.dts.m4 +++ b/p8-i2c.dts.m4 @@ -40,6 +40,8 @@ }; hmfsi@180000 { + #address-cells = <0x2>; + #size-cells = <0x1>; compatible = "ibm,power8-opb-hmfsi"; reg = <0x180000 0x80000>; port = <0x2>; diff --git a/p9-fsi.dtsi.m4 b/p9-fsi.dtsi.m4 index 5109f81..afa7d39 100644 --- a/p9-fsi.dtsi.m4 +++ b/p9-fsi.dtsi.m4 @@ -13,6 +13,8 @@ status = "mustexist"; pib@1000 { + #address-cells = <0x2>; + #size-cells = <0x1>; reg = <0x0 0x1000 0x7>; index = <0x0>; compatible = "ibm,fsi-pib", "ibm,power9-fsi-pib"; @@ -20,12 +22,16 @@ }; hmfsi@100000 { + #address-cells = <0x2>; + #size-cells = <0x1>; compatible = "ibm,fsi-hmfsi"; reg = <0x0 0x100000 0x8000>; port = <0x1>; index = <0x1>; pib@1000 { + #address-cells = <0x2>; + #size-cells = <0x1>; reg = <0x0 0x1000 0x7>; index = <0x1>; compatible = "ibm,fsi-pib", "ibm,power9-fsi-pib";