Re: [U-Boot] [PATCH v2 2/3] arm: armv7: allow unaligned memory access

2018-04-04 Thread Leif Lindholm
On Wed, Apr 04, 2018 at 11:46:45AM +0200, Alexander Graf wrote: > On 03.04.18 21:59, Heinrich Schuchardt wrote: > > The UEFI spec mandates that unaligned memory access should be enabled if > > supported by the CPU architecture. > > > > This patch implements the function unaligned_access() to

Re: [U-Boot] [PATCH v2 2/3] arm: armv7: allow unaligned memory access

2018-04-04 Thread Alexander Graf
On 04.04.18 12:52, Heinrich Schuchardt wrote: > On 04/04/2018 11:46 AM, Alexander Graf wrote: >> >> >> On 03.04.18 21:59, Heinrich Schuchardt wrote: >>> The UEFI spec mandates that unaligned memory access should be enabled if >>> supported by the CPU architecture. >>> >>> This patch implements

Re: [U-Boot] [PATCH v2 2/3] arm: armv7: allow unaligned memory access

2018-04-04 Thread Heinrich Schuchardt
On 04/04/2018 11:46 AM, Alexander Graf wrote: > > > On 03.04.18 21:59, Heinrich Schuchardt wrote: >> The UEFI spec mandates that unaligned memory access should be enabled if >> supported by the CPU architecture. >> >> This patch implements the function unaligned_access() to reset the aligned >>

Re: [U-Boot] [PATCH v2 2/3] arm: armv7: allow unaligned memory access

2018-04-04 Thread Alexander Graf
On 03.04.18 21:59, Heinrich Schuchardt wrote: > The UEFI spec mandates that unaligned memory access should be enabled if > supported by the CPU architecture. > > This patch implements the function unaligned_access() to reset the aligned > access flag in the system control register (SCTLR). It

[U-Boot] [PATCH v2 2/3] arm: armv7: allow unaligned memory access

2018-04-03 Thread Heinrich Schuchardt
The UEFI spec mandates that unaligned memory access should be enabled if supported by the CPU architecture. This patch implements the function unaligned_access() to reset the aligned access flag in the system control register (SCTLR). It is called when the bootefi command is invoked.