1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2025 Aidan MacDonald
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#include "cpucache-armv7m.h"
#include "cortex-m/cache.h"
/*
* The target must define DCACHE_WAYS and DCACHE_SETS to the number
* of sets/ways in the L1 data cache. DCACHE_LINESIZE should be set
* to the writeback granule size.
*
* If you have multiple levels of caches (L2 or higher) then you'll
* probably need to change things here to handle it properly.
*/
#define DCACHE_WAYSHIFT \
(DCACHE_WAYS <= 1 ? 0 : __builtin_clzl(DCACHE_WAYS - 1))
static inline void full_dcache_op(volatile uint32_t *cache_reg)
{
arm_dsb();
for (uint32_t way = 0; way < DCACHE_WAYS; ++way)
{
uint32_t arg = way << DCACHE_WAYSHIFT;
for (uint32_t set = 0; set < DCACHE_SETS; ++set)
{
*cache_reg = arg;
arg += DCACHE_LINESIZE;
}
}
arm_dsb();
}
static inline void range_dcache_op(const void *base, unsigned int size,
volatile uint32_t *cache_reg)
{
arm_dsb();
uint32_t addr = (uint32_t)base;
uint32_t endaddr = addr + size;
while (addr < endaddr)
{
*cache_reg = addr;
addr += DCACHE_LINESIZE;
}
arm_dsb();
}
void commit_dcache(void)
{
full_dcache_op(®_CACHE_DCCSW);
}
void commit_discard_dcache(void)
{
full_dcache_op(®_CACHE_DCCISW);
}
void commit_discard_idcache(void)
{
full_dcache_op(®_CACHE_DCCISW);
REG_CACHE_ICIALLU = 0;
arm_isb();
}
void __discard_idcache(void)
{
full_dcache_op(®_CACHE_DCISW);
REG_CACHE_ICIALLU = 0;
arm_isb();
}
void commit_discard_dcache_range(const void *base, unsigned int size)
{
range_dcache_op(base, size, ®_CACHE_DCCIMVAC);
}
void commit_dcache_range(const void *base, unsigned int size)
{
range_dcache_op(base, size, ®_CACHE_DCCMVAC);
}
void discard_dcache_range(const void *base, unsigned int size)
{
range_dcache_op(base, size, ®_CACHE_DCIMVAC);
}
|