[U-Boot] [PATCH] QSPI flash driver compatibility fixes for mx6ull

2018-10-09 Thread Neil Stainton
nction, as per other Freescale EVKs. Tested on mcimx6ull EVK, U303 populated with a Micron MT25QL256ABA (ID reads as 'n25q256'). Cc: Peng Fan Cc: Jagan Teki Signed-off-by: Neil Stainton --- arch/arm/dts/imx6ull-14x14-evk.dts| 2 +- board/freescale/mx6ullevk/mx6ullevk.c | 15

[U-Boot] [PATCH] u-boot: align cache flushes in load_elf_image_shdr to line boundaries

2018-09-19 Thread Neil Stainton
Prevent cache warning messages when using the 'bootelf' command on an Arm target. Round down each section start address and round up the respective section end to the nearest cache line. Signed-off-by: Neil Stainton --- This is a repeat of commit 8744d6c5 as this file changed significantly

[U-Boot] [PATCH] cmd: env: Fix CRC calculation for 'env export -c -s'

2018-09-12 Thread Neil Stainton
Fix failure to reimport exported checksummed, size constrained data block. 'env export -c' command ignores optional -s size argument when calculating checksum causing subsequent 'env import -c' to fail. Signed-off-by: Neil Stainton --- cmd/nvedit.c | 3 ++- 1 file changed, 2 insertions(+), 1

[U-Boot] [PATCH] u-boot: align cache flushes in load_elf_image_shdr to line boundaries

2018-08-20 Thread Neil Stainton
in the console: CACHE: Misaligned operation at range [8780, 8783c5e0] CACHE: Misaligned operation at range [8783c5e0, 8784b3e0] Signed-off-by: Neil Stainton --- cmd/elf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/elf.c b/cmd/elf.c index eafea38..1199e5d

Re: [U-Boot] Chain loading U-Boot on ARM v7, data abort

2018-08-20 Thread Neil Stainton
On Fri, Aug 17, 2018 at 10:57 AM, Neil Stainton wrote: > New Stack Pointer is: 9ef92ea0 > Relocation Offset is: 18795000 > Relocating to 9ff95000, new gd at 9ef92ec0, sp at 9ef92ea0 > data abort > pc : [<87800c5c>] lr : [<9ff9570c>] > sp :

[U-Boot] Chain loading U-Boot on ARM v7, data abort

2018-08-17 Thread Neil Stainton
Hello list, I am attempting to get U-Boot chain loading another instance of U-Boot and need a little help: I'm currently using the Freescale iMX6ULL EVK, but am developing for a custom platform which is intended to have a primary boot loader in ROM and a field-updatable secondary boot loader,