mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
bootcounter_ram: Fix misaligned cache warning
This patch fixes the warning about misaligned cache on Armada XP: CACHE: Misaligned operation at range [7ffff000, 7fffffac] Signed-off-by: Stefan Roese <sr@denx.de> Cc: Valentin Longchamp <valentin.longchamp@keymile.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
@@ -37,7 +37,8 @@ void bootcount_store(ulong a)
|
|||||||
|
|
||||||
/* Make sure the data is written to RAM */
|
/* Make sure the data is written to RAM */
|
||||||
flush_dcache_range((ulong)&save_addr[0],
|
flush_dcache_range((ulong)&save_addr[0],
|
||||||
(ulong)&save_addr[REPEAT_PATTERN + OFFS_PATTERN]);
|
(((ulong)&save_addr[REPEAT_PATTERN + OFFS_PATTERN] &
|
||||||
|
~(ARCH_DMA_MINALIGN - 1)) + ARCH_DMA_MINALIGN));
|
||||||
}
|
}
|
||||||
|
|
||||||
ulong bootcount_load(void)
|
ulong bootcount_load(void)
|
||||||
|
Reference in New Issue
Block a user