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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 86D0FC4167B for ; Sat, 10 Dec 2022 14:34:28 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id BE3E585329; Sat, 10 Dec 2022 15:34:25 +0100 (CET) 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=1670682866; bh=3Ig2VerxRhYj4URQnTZBVr7w0o4rbM6XvIsDhY54UZ4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=YcL+n4WGjEgmCgD846PlyPkSmjFh9j4lycYczJ1r4zn1GOJcVqgJoPLHBBjy8+BLy FgUv7Oe4gnE5hd5/o1DPLvw6vVaMQRTuea6y6gCkjT1g7RS5pPwrbOxOgn6Zp/TLJl XIGHRnXaFEasyo5Jha6hVO0Al8WplDbLMeEgDUtRIuJUxMbUqDWXmvEz+zzOGmBNfN SxGSHtjtXgFZtxmk879Mewrb1gzuFe5NjWcJ0ziHRYE4yRI7c1qwxYgIH/OmF8PutD PQclaEt0xQ+Nb8zQXVTiPq05ZYP2o6JZ8iyibsQ0CPZgFq7RNLYKnzJ/GYIfSeIXA7 9ajyQSiDbU62w== Received: from mail.denx.de (unknown [IPv6:2a01:238:438b:c500:173d:9f52:ddab:ee01]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: festevam@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 2188F85317; Sat, 10 Dec 2022 15:34:24 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1670682864; bh=3Ig2VerxRhYj4URQnTZBVr7w0o4rbM6XvIsDhY54UZ4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=LykvmZcH1PyXLmQt11CC2DxT0UgdcXkDG2JN5qqQIa3+Uj5Ydhh2k4Ml7a2Us9luY DIxMFx/w5RLFc6aUB93ftCrVHBbudYukTj+p91htKaBYmeAyx+U+CdQKmDln/72qI1 QBGA/jay/phEGAKtBaCAfHgxq1cHkL974/nVSH9I7vxYSGs8TfpTvRiccgMZvMZuAl oSvrorMgMvWprzkU5J1HX1vUp3v2EKHdJwqTptXbJf10IGeYDRe8AxwqpNQ7+hE80x dvHXHMY73OLpd67WCB9SjRKpQ2hx8dvTKON379D/+/nk9u3kbirWSO1zyrK74DLtW0 6k5IVukDLqJxQ== MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Sat, 10 Dec 2022 11:34:24 -0300 From: Fabio Estevam To: Marek Vasut Cc: u-boot@lists.denx.de, Peng Fan , Stefano Babic Subject: Re: [PATCH] ARM: imx: Reinstate decode ECSPI env location from i.MX8M ROMAPI tables In-Reply-To: <20221210012952.346928-1-marex@denx.de> References: <20221210012952.346928-1-marex@denx.de> Message-ID: <8e212ec8c4b01c47fb1bd2d3375a2ece@denx.de> X-Sender: festevam@denx.de User-Agent: Roundcube Webmail/1.3.6 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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.6 at phobos.denx.de X-Virus-Status: Clean On 09/12/2022 22:29, Marek Vasut wrote: > Decode ECSPI boot device in env_get_location() from i.MX8M ROMAPI > tables. > This is necessary to correctly identify env is in SPI NOR when the > system > boots from SPI NOR attached to ECSPI. > > This reinstates change from commit: > e26d0152d61 ("ARM: imx: Decode ECSPI env location from i.MX8M ROMAPI > tables") > which has been dropped in commit: > b0a284a7c94 ("imx: move get_boot_device to common file") > > Fixes: b0a284a7c94 ("imx: move get_boot_device to common file") > Signed-off-by: Marek Vasut Reviewed-by: Fabio Estevam