From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Rutland Subject: Re: [PATCH 2/3] arm64: dts: add the Alpine v2 EVP Date: Mon, 8 Feb 2016 10:51:05 +0000 Message-ID: <20160208105104.GA12991@leverpostej> References: <1454922699-16785-1-git-send-email-antoine.tenart@free-electrons.com> <1454922699-16785-3-git-send-email-antoine.tenart@free-electrons.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <1454922699-16785-3-git-send-email-antoine.tenart@free-electrons.com> Sender: linux-kernel-owner@vger.kernel.org To: Antoine Tenart Cc: catalin.marinas@arm.com, will.deacon@arm.com, tsahee@annapurnalabs.com, linux-arm-kernel@lists.infradead.org, rshitrit@annapurnalabs.com, thomas.petazzoni@free-electrons.com, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Barak Wasserstrom List-Id: devicetree@vger.kernel.org Hi, > + chosen { > + stdout-path = "console0:115200n8"; > + }; There is no console0 alias, so this cannot work. Did you mean serial0? [...] > + aliases { > + serial0 = &uart0; > + serial1 = &uart1; > + serial2 = &uart2; > + serial3 = &uart3; > + }; [...] > + psci { > + compatible = "arm,psci-0.2", "arm,psci"; > + method = "smc"; > + cpu_on = <0x84000003>; > + }; If you have PSCI 0.2, the cpu_on ID (and all other mandatory function IDs) are implicit. If you want to have "arm,psci" as a fallback, then please add the IDs for functions mandatory in PSCI 0.2 which existed in the "arm,psci" binding. Otherwise, drop "arm,psci" from the compatible list, along with the cpu_on function ID. THanks, Mark.