]> git.baikalelectronics.ru Git - uboot.git/commit
ARM: armv7: Add C wrapper for allow_unaligned()
authorMarek Vasut <marex@denx.de>
Sat, 1 Jul 2023 15:26:18 +0000 (17:26 +0200)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sat, 1 Jul 2023 15:29:15 +0000 (17:29 +0200)
commit5f0311ffdbee6f0b466493f810e413a40fe42e93
tree3ff7bd35babf776e329ea8164ebd3f7504c1d63f
parent659cd108880bc76f36f7ea52afb16c14ee338e88
ARM: armv7: Add C wrapper for allow_unaligned()

Rename current assembler implementation of allow_unaligned() to
v7_arch_cp15_allow_unaligned() and add it into armv7.h header,
then add C wrapper of allow_unaligned().

This fixes misbehavior when linking U-Boot on ARMv7a i.MX6Q, where the
CPU specific allow_unaligned() implementation was ignored and instead the
__weak allow_unaligned() implementation from lib/efi_loader/efi_setup.c
was used, which led to "data abort" just before booting Linux via tftp,
in efi_dp_from_file() -> path_to_uefi() -> utf16_put() .

The problem is triggerd by 63f8309e524 ("efi_loader: fix efi_dp_from_file()") .
Adding the wrapper fixes the problem.

Fixes: 28f35d9aaec ("arm: armv7: allow unaligned memory access")
Signed-off-by: Marek Vasut <marex@denx.de>
arch/arm/cpu/armv7/cpu.c
arch/arm/cpu/armv7/sctlr.S
arch/arm/include/asm/armv7.h