From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941321AbcIHNNu (ORCPT ); Thu, 8 Sep 2016 09:13:50 -0400 Received: from foss.arm.com ([217.140.101.70]:48796 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932307AbcIHNNs (ORCPT ); Thu, 8 Sep 2016 09:13:48 -0400 Date: Thu, 8 Sep 2016 14:13:26 +0100 From: Mark Rutland To: shh.xie@gmail.com Cc: devicetree@vger.kernel.org, robh+dt@kernel.org, linux-arm-kernel@lists.infradead.org, catalin.marinas@arm.com, will.deacon@arm.com, shawnguo@kernel.org, linux-kernel@vger.kernel.org, arnd@arndb.de, Mingkai Hu , Horia Geant? , Mihai Bantea , Chenhui Zhao , Gong Qianyu , Minghuan Lian , Hou Zhiqiang , Shaohui Xie Subject: Re: [PATCH 3/7] [v2] arm64: dts: add QorIQ LS1046A SoC support Message-ID: <20160908131326.GE26570@leverpostej> References: <1473069695-33092-1-git-send-email-shh.xie@gmail.com> <1473069695-33092-4-git-send-email-shh.xie@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1473069695-33092-4-git-send-email-shh.xie@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 05, 2016 at 06:01:31PM +0800, shh.xie@gmail.com wrote: > + cpus { > + #address-cells = <1>; > + #size-cells = <0>; > + > + cpu0: cpu@0 { > + device_type = "cpu"; > + compatible = "arm,cortex-a72"; > + reg = <0x0>; > + clocks = <&clockgen 1 0>; > + next-level-cache = <&l2>; > + cpu-idle-states = <&CPU_PH20>; > + }; [...] > + }; > + > + idle-states { > + entry-method = "arm,psci"; > + > + CPU_PH20: cpu-ph20 { > + compatible = "arm,idle-state"; > + idle-state-name = "PH20"; > + arm,psci-suspend-param = <0x00010000>; > + entry-latency-us = <1000>; > + exit-latency-us = <1000>; > + min-residency-us = <3000>; > + }; > + }; There's no PSCI node in this file, and none from am included file, so this doesn't look right. > + pmu { > + compatible = "arm,armv8-pmuv3"; > + interrupts = , > + , > + , > + ; > + interrupt-affinity = <&cpu0>, > + <&cpu1>, > + <&cpu2>, > + <&cpu3>; > + }; The compatible string should be "arm,cortex-a72-pmu". Thanks, Mark. From mboxrd@z Thu Jan 1 00:00:00 1970 From: mark.rutland@arm.com (Mark Rutland) Date: Thu, 8 Sep 2016 14:13:26 +0100 Subject: [PATCH 3/7] [v2] arm64: dts: add QorIQ LS1046A SoC support In-Reply-To: <1473069695-33092-4-git-send-email-shh.xie@gmail.com> References: <1473069695-33092-1-git-send-email-shh.xie@gmail.com> <1473069695-33092-4-git-send-email-shh.xie@gmail.com> Message-ID: <20160908131326.GE26570@leverpostej> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, Sep 05, 2016 at 06:01:31PM +0800, shh.xie at gmail.com wrote: > + cpus { > + #address-cells = <1>; > + #size-cells = <0>; > + > + cpu0: cpu at 0 { > + device_type = "cpu"; > + compatible = "arm,cortex-a72"; > + reg = <0x0>; > + clocks = <&clockgen 1 0>; > + next-level-cache = <&l2>; > + cpu-idle-states = <&CPU_PH20>; > + }; [...] > + }; > + > + idle-states { > + entry-method = "arm,psci"; > + > + CPU_PH20: cpu-ph20 { > + compatible = "arm,idle-state"; > + idle-state-name = "PH20"; > + arm,psci-suspend-param = <0x00010000>; > + entry-latency-us = <1000>; > + exit-latency-us = <1000>; > + min-residency-us = <3000>; > + }; > + }; There's no PSCI node in this file, and none from am included file, so this doesn't look right. > + pmu { > + compatible = "arm,armv8-pmuv3"; > + interrupts = , > + , > + , > + ; > + interrupt-affinity = <&cpu0>, > + <&cpu1>, > + <&cpu2>, > + <&cpu3>; > + }; The compatible string should be "arm,cortex-a72-pmu". Thanks, Mark.