[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20210920162353.GA2023964@p14s>
Date: Mon, 20 Sep 2021 10:23:53 -0600
From: Mathieu Poirier <mathieu.poirier@...aro.org>
To: "Peng Fan (OSS)" <peng.fan@....nxp.com>
Cc: ohad@...ery.com, bjorn.andersson@...aro.org,
o.rempel@...gutronix.de, shawnguo@...nel.org,
s.hauer@...gutronix.de, kernel@...gutronix.de, festevam@...il.com,
linux-imx@....com, linux-remoteproc@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
aisheng.dong@....com, Peng Fan <peng.fan@....com>,
kernel test robot <lkp@...el.com>
Subject: Re: [PATCH V4 1/6] remoteproc: elf_loader: fix loading segment when
is_iomem true
On Fri, Sep 10, 2021 at 05:06:16PM +0800, Peng Fan (OSS) wrote:
> From: Peng Fan <peng.fan@....com>
>
> It seems luckliy work on i.MX platform, but it is wrong.
> Need use memcpy_toio, not memcpy_fromio.
>
Lucky or not I just can't understand how this worked in the first place.
> Fixes: 40df0a91b2a52 ("remoteproc: add is_iomem to da_to_va")
SHA tag should be 12 characters.
> Tested-by: Dong Aisheng <aisheng.dong@....com> (i.MX8MQ)
> Reported-by: kernel test robot <lkp@...el.com>
> Reported-by: Dong Aisheng <aisheng.dong@....com>
> Signed-off-by: Peng Fan <peng.fan@....com>
I will add a CC:stable, fix the title, fix the SHA and pick this patch.
> ---
> drivers/remoteproc/remoteproc_elf_loader.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/remoteproc/remoteproc_elf_loader.c b/drivers/remoteproc/remoteproc_elf_loader.c
> index 469c52e62faff..44e7f9308f4bc 100644
> --- a/drivers/remoteproc/remoteproc_elf_loader.c
> +++ b/drivers/remoteproc/remoteproc_elf_loader.c
> @@ -220,7 +220,7 @@ int rproc_elf_load_segments(struct rproc *rproc, const struct firmware *fw)
> /* put the segment where the remote processor expects it */
> if (filesz) {
> if (is_iomem)
> - memcpy_fromio(ptr, (void __iomem *)(elf_data + offset), filesz);
> + memcpy_toio((void __iomem *)ptr, elf_data + offset, filesz);
> else
> memcpy(ptr, elf_data + offset, filesz);
> }
> --
> 2.25.1
>
Powered by blists - more mailing lists