From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 689EDC433EF for ; Fri, 8 Oct 2021 09:22:38 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id CBDBE60F4B for ; Fri, 8 Oct 2021 09:22:37 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org CBDBE60F4B Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 39AF480644; Fri, 8 Oct 2021 11:22:35 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1633684955; bh=+YT3mU4P1+gypP8jwa/UQ9xa9RyU+zGslR6ZJnsiz4I=; h=Subject:From:To:Cc:References:Date:In-Reply-To:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=Np6XCeR7Ujjmm2cOi3aChw0Fse0TfU7s/IjlKZEmEhs+/XdGkmStMtsuU44uZDYGf htedq+gx8ashFGYxD1npVm0eP61/rKNzceqTM8VtMC62lfiD33qIVBOHuz0eNXk7bc AuqSVrr22Op/QSYZHNbG1fcFJ8aMW7J4XyD1SJlRqzeIoTxmMN0aoYzxfD2DxCY787 k3ObhBYNDfgqA+DpHQTjZ+o/q6HYORvB4zZJSmXv4IpiKKEwtWQxGaMJF7xnZ+T/qZ o+WyiW96epw4aVQjw0jwwp5WIR2ZCrMyIfbHEObwVz387Nq/HevIDaVg3KGk/KfNV7 VE8NmUv2uYjRQ== Received: by phobos.denx.de (Postfix, from userid 109) id 0045680644; Fri, 8 Oct 2021 11:22:33 +0200 (CEST) Received: from mout-u-205.mailbox.org (mout-u-205.mailbox.org [91.198.250.254]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 816628018E for ; Fri, 8 Oct 2021 11:22:30 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=fail smtp.mailfrom=sr@denx.de Received: from smtp2.mailbox.org (smtp2.mailbox.org [80.241.60.241]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-u-205.mailbox.org (Postfix) with ESMTPS id 4HQjQG39hTzQkH1; Fri, 8 Oct 2021 11:22:30 +0200 (CEST) Subject: Re: [PATCH] arm: mvebu: Select SPL_SKIP_LOWLEVEL_INIT on ARMADA_32BIT From: Stefan Roese To: u-boot@lists.denx.de Cc: Tom Rini , =?UTF-8?Q?Marek_Beh=c3=ban?= , =?UTF-8?Q?Pali_Roh=c3=a1r?= References: <20211003095345.1369927-1-sr@denx.de> Message-ID: <8214d453-2e6e-5b1f-e3c7-a3cf2312ff3f@denx.de> Date: Fri, 8 Oct 2021 11:22:27 +0200 MIME-Version: 1.0 In-Reply-To: <20211003095345.1369927-1-sr@denx.de> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: de-DE Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9F1D0183D X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean On 03.10.21 11:53, Stefan Roese wrote: > Select SPL_SKIP_LOWLEVEL_INIT on 32bit Armada platforms via Kconfig, > as this was removed from mach/config.h in a2ac2b96 ("Convert > CONFIG_SKIP_LOWLEVEL_INIT et al to Kconfig"). > > Signed-off-by: Stefan Roese > Fixes: a2ac2b96 ("Convert CONFIG_SKIP_LOWLEVEL_INIT et al to Kconfig") > Cc: Tom Rini > Cc: Marek Behún > Cc: Pali Rohár Applied to u-boot-marvell/master Thanks, Stefan > --- > arch/arm/mach-mvebu/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/arm/mach-mvebu/Kconfig b/arch/arm/mach-mvebu/Kconfig > index 087643725e85..54dff9986b41 100644 > --- a/arch/arm/mach-mvebu/Kconfig > +++ b/arch/arm/mach-mvebu/Kconfig > @@ -11,6 +11,7 @@ config ARMADA_32BIT > select SPL_DM if SPL > select SPL_DM_SEQ_ALIAS if SPL > select SPL_OF_CONTROL if SPL > + select SPL_SKIP_LOWLEVEL_INIT > select SPL_SIMPLE_BUS if SPL > select SUPPORT_SPL > select TRANSLATION_OFFSET > Viele Grüße, Stefan -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de