From patchwork Fri Apr 15 11:41:31 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 610932 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3qmbGX2WnJz9t48 for ; Fri, 15 Apr 2016 21:41:23 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b=ItPellEL; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 955B4A7611; Fri, 15 Apr 2016 13:41:19 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nHDXdT8SlbHx; Fri, 15 Apr 2016 13:41:19 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 22CACA75F2; Fri, 15 Apr 2016 13:41:19 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1DD17A75F2 for ; Fri, 15 Apr 2016 13:41:15 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BP9n8EPJfMDc for ; Fri, 15 Apr 2016 13:41:15 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg-08.nifty.com (conuserg-08.nifty.com [210.131.2.75]) by theia.denx.de (Postfix) with ESMTPS id 56E83A74D0 for ; Fri, 15 Apr 2016 13:41:09 +0200 (CEST) Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-08.nifty.com with ESMTP id u3FBeat2030091; Fri, 15 Apr 2016 20:40:36 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com u3FBeat2030091 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1460720437; bh=+a708QgMHsRnhhM/yxKo/cgsOT33HXxsMXsP6cu2mRU=; h=From:To:Cc:Subject:Date:From; b=ItPellELBxEaC39oImPfv1RXG43TSTdTgH5kYhk9JHADNDnq0oe+vUXr/au8b964R MhdwDxj5wrnsGCpiA8fMbkcpV4/1EvXn61yLx6yz6LIRgTWfQbgKJ3P9j1yYCed6Jn OaIoGK62hWhRkhPWmugJpWAWHyjDcLwm/hvM/FkCs6BEFhzKalqVo4auIkxEoGdNPA pcEJs2Wh07/BoObctSsziNTATH82EzBqO2wjpO+UWMZjeF77DgdqKmhoo3EzPS7xbc eiAcPx5z2N0XdJglVmPeN1u6ok5MHI/J8wdzoqm1OjaELMDQbv0PIF2R8DZ/cZxDeK NUt1w0JQ/sPvQ== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Fri, 15 Apr 2016 20:41:31 +0900 Message-Id: <1460720491-25148-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Cc: Tom Warren , Thierry Reding Subject: [U-Boot] [PATCH] arm64: add missing gic_init_secure_percpu for non multi-entry X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Per-CPU initialization of GIC is necessary even when CONFIG_ARMV8_MULTIENTRY is undefined. Signed-off-by: Masahiro Yamada --- arch/arm/cpu/armv8/start.S | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/cpu/armv8/start.S b/arch/arm/cpu/armv8/start.S index dceedd7..124a274 100644 --- a/arch/arm/cpu/armv8/start.S +++ b/arch/arm/cpu/armv8/start.S @@ -208,6 +208,8 @@ WEAK(lowlevel_init) */ ldr x0, =GICD_BASE bl gic_init_secure + ldr x0, =GICR_BASE + bl gic_init_secure_percpu #endif #else /* CONFIG_ARMV8_MULTIENTRY is set */ #if defined(CONFIG_GICV2) || defined(CONFIG_GICV3)