From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941398AbcIHNSg (ORCPT ); Thu, 8 Sep 2016 09:18:36 -0400 Received: from foss.arm.com ([217.140.101.70]:48998 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751786AbcIHNSf (ORCPT ); Thu, 8 Sep 2016 09:18:35 -0400 Date: Thu, 8 Sep 2016 14:18:18 +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: <20160908131818.GF26570@leverpostej> References: <1473069695-33092-1-git-send-email-shh.xie@gmail.com> <1473069695-33092-4-git-send-email-shh.xie@gmail.com> <20160908131326.GE26570@leverpostej> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160908131326.GE26570@leverpostej> 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 Thu, Sep 08, 2016 at 02:13:26PM +0100, Mark Rutland wrote: > 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. Looking again, none of the cpu nodes has an enable-method property, and subsequent patches don't seem to add that to any cpu node. Has this DT actually been tested? Thanks, Mark.