From patchwork Thu Sep 1 07:57:42 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antoine Tenart X-Patchwork-Id: 664852 X-Patchwork-Delegate: trini@ti.com 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 3sPyWh2TmCz9s8x for ; Thu, 1 Sep 2016 20:03:44 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 33F4CA7680; Thu, 1 Sep 2016 12:02:05 +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 CQFS3dB69MAX; Thu, 1 Sep 2016 12:02:05 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7441FA75F9; Thu, 1 Sep 2016 12:01:22 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D67344B93F for ; Thu, 1 Sep 2016 10:00:14 +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 XRK0AW_PkWT3 for ; Thu, 1 Sep 2016 10:00:14 +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 mail.free-electrons.com (down.free-electrons.com [37.187.137.238]) by theia.denx.de (Postfix) with ESMTP id ABC6F4B77D for ; Thu, 1 Sep 2016 10:00:12 +0200 (CEST) Received: by mail.free-electrons.com (Postfix, from userid 110) id 38CE81B1F; Thu, 1 Sep 2016 10:00:11 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mail.free-electrons.com X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,SHORTCIRCUIT shortcircuit=ham autolearn=disabled version=3.4.0 Received: from localhost (LStLambert-657-1-97-87.w90-63.abo.wanadoo.fr [90.63.216.87]) by mail.free-electrons.com (Postfix) with ESMTPSA id 010301137; Thu, 1 Sep 2016 10:00:00 +0200 (CEST) From: Antoine Tenart To: hdegoede@redhat.com Date: Thu, 1 Sep 2016 09:57:42 +0200 Message-Id: <20160901075746.28564-3-antoine.tenart@free-electrons.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20160901075746.28564-1-antoine.tenart@free-electrons.com> References: <20160901075746.28564-1-antoine.tenart@free-electrons.com> X-Mailman-Approved-At: Thu, 01 Sep 2016 12:00:54 +0200 Cc: u-boot@lists.denx.de Subject: [U-Boot] [PATCH 2/6] sunxi: select ARM_GIC for sun[6789]i 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" Select the newly introduced ARM_GIC option to the relevant sunxi MACH configurations. Signed-off-by: Antoine Tenart --- board/sunxi/Kconfig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/board/sunxi/Kconfig b/board/sunxi/Kconfig index 1b30669230a3..c9b500e9390b 100644 --- a/board/sunxi/Kconfig +++ b/board/sunxi/Kconfig @@ -34,6 +34,7 @@ config MACH_SUN5I config MACH_SUN6I bool "sun6i (Allwinner A31)" + select ARM_GIC select CPU_V7 select CPU_V7_HAS_NONSEC select CPU_V7_HAS_VIRT @@ -43,6 +44,7 @@ config MACH_SUN6I config MACH_SUN7I bool "sun7i (Allwinner A20)" + select ARM_GIC select CPU_V7 select CPU_V7_HAS_NONSEC select CPU_V7_HAS_VIRT @@ -52,6 +54,7 @@ config MACH_SUN7I config MACH_SUN8I_A23 bool "sun8i (Allwinner A23)" + select ARM_GIC select CPU_V7 select CPU_V7_HAS_NONSEC select CPU_V7_HAS_VIRT @@ -61,6 +64,7 @@ config MACH_SUN8I_A23 config MACH_SUN8I_A33 bool "sun8i (Allwinner A33)" + select ARM_GIC select CPU_V7 select CPU_V7_HAS_NONSEC select CPU_V7_HAS_VIRT @@ -70,12 +74,14 @@ config MACH_SUN8I_A33 config MACH_SUN8I_A83T bool "sun8i (Allwinner A83T)" + select ARM_GIC select CPU_V7 select SUNXI_GEN_SUN6I select SUPPORT_SPL config MACH_SUN8I_H3 bool "sun8i (Allwinner H3)" + select ARM_GIC select CPU_V7 select CPU_V7_HAS_NONSEC select CPU_V7_HAS_VIRT @@ -85,6 +91,7 @@ config MACH_SUN8I_H3 config MACH_SUN9I bool "sun9i (Allwinner A80)" + select ARM_GIC select CPU_V7 select SUNXI_GEN_SUN6I