Patch "remoteproc: pru: Fix firmware loading crashes on K3 SoCs" has been added to the 5.11-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    remoteproc: pru: Fix firmware loading crashes on K3 SoCs

to the 5.11-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     remoteproc-pru-fix-firmware-loading-crashes-on-k3-so.patch
and it can be found in the queue-5.11 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit e58c8bfe860d027f66b78e3b0f2848c929187bb5
Author: Suman Anna <s-anna@xxxxxx>
Date:   Mon Mar 15 15:58:59 2021 -0500

    remoteproc: pru: Fix firmware loading crashes on K3 SoCs
    
    [ Upstream commit 9afeefcf06fc7b4bdab06a6e2cb06745bded34dd ]
    
    The K3 PRUs are 32-bit processors and in general have some limitations
    in using the standard ARMv8 memcpy function for loading firmware segments,
    so the driver already uses a custom memcpy implementation. This added
    logic however is limited to only IRAMs at the moment, but the loading
    into Data RAMs is not completely ok either and does generate a kernel
    crash for unaligned accesses.
    
    Fix these crashes by removing the existing IRAM logic limitation and
    extending the custom memcpy usage to Data RAMs as well for all K3 SoCs.
    
    Fixes: 1d39f4d19921 ("remoteproc: pru: Add support for various PRU cores on K3 AM65x SoCs")
    Signed-off-by: Suman Anna <s-anna@xxxxxx>
    Link: https://lore.kernel.org/r/20210315205859.19590-1-s-anna@xxxxxx
    Signed-off-by: Bjorn Andersson <bjorn.andersson@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/remoteproc/pru_rproc.c b/drivers/remoteproc/pru_rproc.c
index 2667919d76b3..16979c1cd2f4 100644
--- a/drivers/remoteproc/pru_rproc.c
+++ b/drivers/remoteproc/pru_rproc.c
@@ -585,7 +585,7 @@ pru_rproc_load_elf_segments(struct rproc *rproc, const struct firmware *fw)
 			break;
 		}
 
-		if (pru->data->is_k3 && is_iram) {
+		if (pru->data->is_k3) {
 			ret = pru_rproc_memcpy(ptr, elf_data + phdr->p_offset,
 					       filesz);
 			if (ret) {



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux