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

2019-04-30 Thread Bin Meng
On Tue, Apr 30, 2019 at 1:54 PM 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 CONFIG_XIP

[U-Boot] [PATCH v4 1/5] 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