From mboxrd@z Thu Jan 1 00:00:00 1970 From: Priyanka Jain Date: Mon, 22 Feb 2021 09:05:02 +0000 Subject: [PATCH v2 17/38] common: Move initr_addr_map() to a bit earlier In-Reply-To: <1613663886-83811-18-git-send-email-bmeng.cn@gmail.com> References: <1613663886-83811-1-git-send-email-bmeng.cn@gmail.com> <1613663886-83811-18-git-send-email-bmeng.cn@gmail.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de >-----Original Message----- >From: Bin Meng >Sent: Thursday, February 18, 2021 9:28 PM >To: Simon Glass ; Alexander Graf ; >Priyanka Jain >Cc: U-Boot Mailing List ; Tom Rini >; Marek Szyprowski ; >Matthias Brugger >Subject: [PATCH v2 17/38] common: Move initr_addr_map() to a bit earlier > >At present initr_addr_map() is put at a late stage in the init_sequence_r[] calls. >This won't work because lot of device driver initialization (e.g.: serial port) >happens before it but is lack of the address translation support. > >This moves the call to a bit earlier, right after the DM initialization. > >Signed-off-by: Bin Meng >Reviewed-by: Simon Glass >--- > >(no changes since v1) > > common/board_r.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > Reviewed-by: Priyanka Jain