Re: [PATCH] spl: introduce SPL_XIP to config

2022-08-26 Thread Sean Anderson
On 8/26/22 4:44 AM, Nikita Shubin wrote: From: Nikita Shubin U-Boot and SPL don't necessary share the same location, so we might end with U-Boot SPL in read-only memory (XIP) and U-Boot in read-write memory. In case of non XIP boot mode, we rely on such variables as "hart_lottery" and "availab

[PATCH] spl: introduce SPL_XIP to config

2022-08-26 Thread Nikita Shubin
From: Nikita Shubin U-Boot and SPL don't necessary share the same location, so we might end with U-Boot SPL in read-only memory (XIP) and U-Boot in read-write memory. In case of non XIP boot mode, we rely on such variables as "hart_lottery" and "available_harts_lock" which we use as atomics. Th