arm: vf610: add uart0 clock/iomux definitions
[u-boot/qq2440-u-boot.git] / drivers / bootcount / bootcount_at91.c
blob9c2bbfaf6946cd4153546d2eb30b94d46b9be997
1 /*
2 * SPDX-License-Identifier: GPL-2.0+
3 */
5 #include <common.h>
6 #include <asm/io.h>
7 #include <asm/arch/hardware.h>
8 #include <asm/arch/at91_gpbr.h>
11 * We combine the BOOTCOUNT_MAGIC and bootcount in one 32-bit register.
12 * This is done so we need to use only one of the four GPBR registers.
14 void bootcount_store(ulong a)
16 at91_gpbr_t *gpbr = (at91_gpbr_t *) ATMEL_BASE_GPBR;
18 writel((BOOTCOUNT_MAGIC & 0xffff0000) | (a & 0x0000ffff),
19 &gpbr->reg[AT91_GPBR_INDEX_BOOTCOUNT]);
22 ulong bootcount_load(void)
24 at91_gpbr_t *gpbr = (at91_gpbr_t *) ATMEL_BASE_GPBR;
26 ulong val = readl(&gpbr->reg[AT91_GPBR_INDEX_BOOTCOUNT]);
27 if ((val & 0xffff0000) != (BOOTCOUNT_MAGIC & 0xffff0000))
28 return 0;
29 else
30 return val & 0x0000ffff;