diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2022-02-08 20:08:55 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-02-21 13:30:20 +0000 |
commit | ad768e6f2a3397ec88ae874ad743df5d7c8c1936 (patch) | |
tree | f34e909ce9b700b1033830c389642e0105195936 /include/qemu/cacheinfo.h | |
parent | 5b3e34315a8b2d985299735d685c71d481815bef (diff) | |
download | qemu-ad768e6f2a3397ec88ae874ad743df5d7c8c1936.zip qemu-ad768e6f2a3397ec88ae874ad743df5d7c8c1936.tar.gz qemu-ad768e6f2a3397ec88ae874ad743df5d7c8c1936.tar.bz2 |
include: Move qemu_[id]cache_* declarations to new qemu/cacheinfo.h
The qemu_icache_linesize, qemu_icache_linesize_log,
qemu_dcache_linesize, and qemu_dcache_linesize_log variables are not
used in many files. Move them out of osdep.h to a new
qemu/cacheinfo.h, and document them.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220208200856.3558249-5-peter.maydell@linaro.org
Diffstat (limited to 'include/qemu/cacheinfo.h')
-rw-r--r-- | include/qemu/cacheinfo.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/qemu/cacheinfo.h b/include/qemu/cacheinfo.h new file mode 100644 index 0000000..019a157 --- /dev/null +++ b/include/qemu/cacheinfo.h @@ -0,0 +1,21 @@ +/* + * QEMU host cacheinfo information + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + */ +#ifndef QEMU_CACHEINFO_H +#define QEMU_CACHEINFO_H + +/* + * These variables represent our best guess at the host icache and + * dcache sizes, expressed both as the size in bytes and as the + * base-2 log of the size in bytes. They are initialized at startup + * (via an attribute 'constructor' function). + */ +extern int qemu_icache_linesize; +extern int qemu_icache_linesize_log; +extern int qemu_dcache_linesize; +extern int qemu_dcache_linesize_log; + +#endif |