2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2010-04-28 08:47:36 +00:00
|
|
|
/*
|
2012-08-16 17:55:41 +00:00
|
|
|
* (C) Copyright 2010-2012
|
2010-04-28 08:47:36 +00:00
|
|
|
* Stefan Roese, DENX Software Engineering, sr@denx.de.
|
|
|
|
*/
|
|
|
|
|
2012-08-16 17:55:41 +00:00
|
|
|
#include <bootcount.h>
|
|
|
|
#include <linux/compiler.h>
|
2010-04-28 08:47:36 +00:00
|
|
|
|
2012-08-16 17:55:41 +00:00
|
|
|
/* Now implement the generic default functions */
|
|
|
|
__weak void bootcount_store(ulong a)
|
2010-04-28 08:47:36 +00:00
|
|
|
{
|
|
|
|
void *reg = (void *)CONFIG_SYS_BOOTCOUNT_ADDR;
|
2018-07-25 11:45:58 +00:00
|
|
|
uintptr_t flush_start = rounddown(CONFIG_SYS_BOOTCOUNT_ADDR,
|
|
|
|
CONFIG_SYS_CACHELINE_SIZE);
|
|
|
|
uintptr_t flush_end;
|
2010-04-28 08:47:36 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_SYS_BOOTCOUNT_SINGLEWORD)
|
2018-10-10 22:13:54 +00:00
|
|
|
raw_bootcount_store(reg, (CONFIG_SYS_BOOTCOUNT_MAGIC & 0xffff0000) | a);
|
2018-07-25 11:45:58 +00:00
|
|
|
|
|
|
|
flush_end = roundup(CONFIG_SYS_BOOTCOUNT_ADDR + 4,
|
|
|
|
CONFIG_SYS_CACHELINE_SIZE);
|
2010-04-28 08:47:36 +00:00
|
|
|
#else
|
2012-08-16 17:55:41 +00:00
|
|
|
raw_bootcount_store(reg, a);
|
2018-10-10 22:13:54 +00:00
|
|
|
raw_bootcount_store(reg + 4, CONFIG_SYS_BOOTCOUNT_MAGIC);
|
2018-07-25 11:45:58 +00:00
|
|
|
|
|
|
|
flush_end = roundup(CONFIG_SYS_BOOTCOUNT_ADDR + 8,
|
|
|
|
CONFIG_SYS_CACHELINE_SIZE);
|
2015-12-22 12:15:14 +00:00
|
|
|
#endif /* defined(CONFIG_SYS_BOOTCOUNT_SINGLEWORD */
|
2018-07-25 11:45:58 +00:00
|
|
|
flush_dcache_range(flush_start, flush_end);
|
2010-04-28 08:47:36 +00:00
|
|
|
}
|
|
|
|
|
2012-08-16 17:55:41 +00:00
|
|
|
__weak ulong bootcount_load(void)
|
2010-04-28 08:47:36 +00:00
|
|
|
{
|
|
|
|
void *reg = (void *)CONFIG_SYS_BOOTCOUNT_ADDR;
|
|
|
|
|
|
|
|
#if defined(CONFIG_SYS_BOOTCOUNT_SINGLEWORD)
|
2012-08-16 17:55:41 +00:00
|
|
|
u32 tmp = raw_bootcount_load(reg);
|
2010-05-20 14:09:35 +00:00
|
|
|
|
2018-10-10 22:13:54 +00:00
|
|
|
if ((tmp & 0xffff0000) != (CONFIG_SYS_BOOTCOUNT_MAGIC & 0xffff0000))
|
2010-04-28 08:47:36 +00:00
|
|
|
return 0;
|
|
|
|
else
|
2010-05-20 14:09:35 +00:00
|
|
|
return (tmp & 0x0000ffff);
|
2010-04-28 08:47:36 +00:00
|
|
|
#else
|
2018-10-10 22:13:54 +00:00
|
|
|
if (raw_bootcount_load(reg + 4) != CONFIG_SYS_BOOTCOUNT_MAGIC)
|
2010-04-28 08:47:36 +00:00
|
|
|
return 0;
|
|
|
|
else
|
2012-08-16 17:55:41 +00:00
|
|
|
return raw_bootcount_load(reg);
|
2015-12-22 12:15:14 +00:00
|
|
|
#endif /* defined(CONFIG_SYS_BOOTCOUNT_SINGLEWORD) */
|
2010-04-28 08:47:36 +00:00
|
|
|
}
|