1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2010-2012
4 * Stefan Roese, DENX Software Engineering, sr@denx.de.
10 #include <linux/compiler.h>
12 #if !defined(CONFIG_DM_BOOTCOUNT)
13 /* Now implement the generic default functions */
14 __weak void bootcount_store(ulong a)
16 void *reg = (void *)CONFIG_SYS_BOOTCOUNT_ADDR;
17 uintptr_t flush_start = rounddown(CONFIG_SYS_BOOTCOUNT_ADDR,
18 CONFIG_SYS_CACHELINE_SIZE);
21 #if defined(CONFIG_SYS_BOOTCOUNT_SINGLEWORD)
22 raw_bootcount_store(reg, (CONFIG_SYS_BOOTCOUNT_MAGIC & 0xffff0000) | a);
24 flush_end = roundup(CONFIG_SYS_BOOTCOUNT_ADDR + 4,
25 CONFIG_SYS_CACHELINE_SIZE);
27 raw_bootcount_store(reg, a);
28 raw_bootcount_store(reg + 4, CONFIG_SYS_BOOTCOUNT_MAGIC);
30 flush_end = roundup(CONFIG_SYS_BOOTCOUNT_ADDR + 8,
31 CONFIG_SYS_CACHELINE_SIZE);
32 #endif /* defined(CONFIG_SYS_BOOTCOUNT_SINGLEWORD */
33 flush_dcache_range(flush_start, flush_end);
36 __weak ulong bootcount_load(void)
38 void *reg = (void *)CONFIG_SYS_BOOTCOUNT_ADDR;
40 #if defined(CONFIG_SYS_BOOTCOUNT_SINGLEWORD)
41 u32 tmp = raw_bootcount_load(reg);
43 if ((tmp & 0xffff0000) != (CONFIG_SYS_BOOTCOUNT_MAGIC & 0xffff0000))
46 return (tmp & 0x0000ffff);
48 if (raw_bootcount_load(reg + 4) != CONFIG_SYS_BOOTCOUNT_MAGIC)
51 return raw_bootcount_load(reg);
52 #endif /* defined(CONFIG_SYS_BOOTCOUNT_SINGLEWORD) */
58 * struct bootcount_mem_priv - private bootcount mem driver data
60 * @base: base address used for bootcounter
61 * @singleword: if true use only one 32 bit word for bootcounter
63 struct bootcount_mem_priv {
68 static int bootcount_mem_get(struct udevice *dev, u32 *a)
70 struct bootcount_mem_priv *priv = dev_get_priv(dev);
71 void *reg = (void *)priv->base;
72 u32 magic = CONFIG_SYS_BOOTCOUNT_MAGIC;
74 if (priv->singleword) {
75 u32 tmp = raw_bootcount_load(reg);
77 if ((tmp & 0xffff0000) != (magic & 0xffff0000))
80 *a = (tmp & 0x0000ffff);
82 if (raw_bootcount_load(reg + 4) != magic)
85 *a = raw_bootcount_load(reg);
91 static int bootcount_mem_set(struct udevice *dev, const u32 a)
93 struct bootcount_mem_priv *priv = dev_get_priv(dev);
94 void *reg = (void *)priv->base;
95 u32 magic = CONFIG_SYS_BOOTCOUNT_MAGIC;
96 uintptr_t flush_start = rounddown(priv->base,
97 CONFIG_SYS_CACHELINE_SIZE);
100 if (priv->singleword) {
101 raw_bootcount_store(reg, (magic & 0xffff0000) | a);
102 flush_end = roundup(priv->base + 4,
103 CONFIG_SYS_CACHELINE_SIZE);
105 raw_bootcount_store(reg, a);
106 raw_bootcount_store(reg + 4, magic);
107 flush_end = roundup(priv->base + 8,
108 CONFIG_SYS_CACHELINE_SIZE);
110 flush_dcache_range(flush_start, flush_end);
115 static const struct bootcount_ops bootcount_mem_ops = {
116 .get = bootcount_mem_get,
117 .set = bootcount_mem_set,
120 static int bootcount_mem_probe(struct udevice *dev)
122 struct bootcount_mem_priv *priv = dev_get_priv(dev);
124 priv->base = (phys_addr_t)dev_read_addr(dev);
125 if (dev_read_bool(dev, "single-word"))
126 priv->singleword = true;
131 static const struct udevice_id bootcount_mem_ids[] = {
132 { .compatible = "u-boot,bootcount" },
136 U_BOOT_DRIVER(bootcount_mem) = {
137 .name = "bootcount-mem",
138 .id = UCLASS_BOOTCOUNT,
139 .priv_auto = sizeof(struct bootcount_mem_priv),
140 .probe = bootcount_mem_probe,
141 .of_match = bootcount_mem_ids,
142 .ops = &bootcount_mem_ops,