[ipxe-devel] [PATCH 1/1] [arm] add -mno-unaligned-access compiler flag
Heinrich Schuchardt
xypron.glpk at gmx.de
Wed Apr 18 19:21:44 UTC 2018
On 03/29/2018 06:08 PM, Heinrich Schuchardt wrote:
> On 03/29/2018 11:20 AM, Mark Rutland wrote:
>> Hi,
>>
>> On Wed, Mar 28, 2018 at 10:19:50PM +0200, Heinrich Schuchardt wrote:
>>> Without the flag a "data abort" occured when compiling with gcc 6.3 for
>>> armhf and running on an Allwinner A20 SOC in function efi_devpath_end().
>>
>> I think this may be a bug in the UEFI implementation (which I guess is
>> U-Boot?). In the 2.7 UEFI spec, section 2.3.5 states that for AArch32:
>>
>> Unaligned access should be enabled if supported; Alignment faults are
>> enabled otherwise.
>>
>> All ARMv6 and ARMv7 CPUs (including the COrtex-A7s in the A20 SoC)
>> support unaligned accesses to normal memory, as would be the case for
>> memory accessed by efi_devpath_end().
>>
>> Unless GCC is generating misaligned LDM/STM instructions, I believe this
>> is a FW bug that would be worth reporting, regardless of whether this
>> patch is taken on the IPXE side.
>
> Hello Mark,
>
> thank you for the information.
>
> I have unset bit 1 (alignment bit) of the system control register in
> U-Boot. Now iPXE snp.efi works on the Allwinner A20 without using
> -mno-unaligned-access.
>
> I will try upstreaming a patch for this:
>
> diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S
> index 7e2695761e..1771741119 100644
> --- a/arch/arm/cpu/armv7/start.S
> +++ b/arch/arm/cpu/armv7/start.S
> @@ -150,7 +150,6 @@ ENTRY(cpu_init_cp15)
> mrc p15, 0, r0, c1, c0, 0
> bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
> bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
> - orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
> orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
> #ifdef CONFIG_SYS_ICACHE_OFF
> bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
>
> Best regards
>
> Heinrich
>
Hello Michael,
the unaligned access problem with iPXE is still haunting me. Even with
SCTLR.A = 0 not all forms of unaligned access are allowable. When trying
to run iPXE on another board I experienced the following data abort:
static int tcp_rx ( struct io_buffer *iobuf,
struct net_device *netdev __unused,
struct sockaddr_tcpip *st_src,
struct sockaddr_tcpip *st_dest __unused,
uint16_t pshdr_csum ) {
ldr r5, [r0, #12] /* Here a value from iobuf is copied */
...
ldrd r6, r3, [r5, #4] /* Here the data abort occurs */
r5 : 7ceba822 /* This value is only halfword aligned */
All forms of LDM and STM, LDRD, RFE, SRS, STRD, SWP must be word aligned
even if bit SCTLR.A = 0.
See ARM Architecture Reference Manual, ARMv7-A and ARMv7-R edition
Best regards
Heinrich
More information about the ipxe-devel
mailing list