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 2993FC433EF for ; Mon, 25 Apr 2022 12:46:07 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 44FA183B4C; Mon, 25 Apr 2022 14:46:03 +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=1650890764; bh=pSQaCphzzjkyv9DUFSV6BjNWG3feRLPEdaWOgsE65xM=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=eUt5+GP0acbUgWtK1ZibBE0Boi5IJk08Hb65ETIvdemY8FT0kcZNK3HNSMxnX2Akb 7jvT5REsEjBnD1bRZH9NM1wflBxQ4IThf9FYrVCqBjnKF6l/QTPC5Ouq03Jl0Zz8nk R+njukYkzkIXruv8j6NGR72AOSayqurZvVG+X+vOCu2doGqcSbpaFO/ss9SBKI2hQY 3RKHMz7pS/HookswuCyBt/J82cvV9WYIviDQPdb6uEpmblG7AZl6MFW0n2H3uH4tp5 FOcLRc62FLRHweQ3NKurAzYY6+mGoKwsIcEOHEepHXHkVPERFUlEE8sf8E7TFRZdqv cSkoR9tWZKb3A== 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 3A5EE80F91; Mon, 25 Apr 2022 14:46:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1650890761; bh=pSQaCphzzjkyv9DUFSV6BjNWG3feRLPEdaWOgsE65xM=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=OjrnE5amSFAdstJ1nd3MxmBcyNRwOgHUtGG+jNRDfaPN3QDW/Xlrty86ukjPeKda6 MAgwT8OPLSf3vyh3cP1FbkmIU7Ay0e42F0e/Sjhm88gfFikWUqbIqqFxnzA7Ih1/OH P74kmFtzAZK6nsHA+40gBKlXBJt8uV0l/9ORChyp4F6e2ZVTx5HsQpy2wQU9dhAlN/ er5ZVh+Rpv0La0ZwYLVYmiLxgJFfCpuj4ZNoU5yuhANx5UcdQ0pzEbiuonWYcOZSUA WykAP51+To1/1gJiEfQ71iC53Z9XAmUMOBehfjZdSr0loL8ljcr+CjEr2LcLgKTHsm fUIV8IcxXs/AQ== MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Mon, 25 Apr 2022 09:46:01 -0300 From: Fabio Estevam To: Marek Vasut Cc: u-boot@lists.denx.de, Peng Fan , Stefano Babic , trini@konsulko.com Subject: Re: [PATCH 1/4] ARM: imx: imx8m: Introduce and use UART_BASE_ADDR(n) In-Reply-To: <20220424214406.52658-1-marex@denx.de> References: <20220424214406.52658-1-marex@denx.de> Message-ID: <8c8da72e95a3b2d3084ced28605ae5e4@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.5 at phobos.denx.de X-Virus-Status: Clean Hi Marek, On 24/04/2022 18:44, Marek Vasut wrote: > Introduce helper macro UART_BASE_ADDR(n), which returns Nth UART base > address. Convert all board configurations to this new macro. This is > the > first step toward switching CONFIG_MXC_UART_BASE to Kconfig. This is a > clean up, no functional change. As DM_SERIAL is mandatory now, we should get rid of CONFIG_MXC_UART_BASE. I would prefer a patch that removes CONFIG_MXC_UART_BASE instead. Regards, Fabio Estevam