Re: [U-Boot] [PATCH v3 1/4] riscv: Introduce CONFIG_XIP to support booting from flash

2019-04-29 Thread Auer, Lukas
On Mon, 2019-04-29 at 15:44 +0800, Andes wrote: > From: Rick Chen > > When U-Boot boots from flash, during the boot process, > hart_lottery and available_harts_lock variable addresses > point to flash which is not writable. This causes boot > failures on AE350. Introduce a config option

[U-Boot] [PATCH v3 1/4] riscv: Introduce CONFIG_XIP to support booting from flash

2019-04-29 Thread Andes
From: Rick Chen When U-Boot boots from flash, during the boot process, hart_lottery and available_harts_lock variable addresses point to flash which is not writable. This causes boot failures on AE350. Introduce a config option CONFIG_XIP to support such configuration. Signed-off-by: Rick Chen