hw/arm/virt: Consolidate GIC finalize logic
[qemu.git] / include / qemu / cacheinfo.h
blob019a157ea0835576f8199cafc7301dd7cf3e5a82
1 /*
2 * QEMU host cacheinfo information
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7 #ifndef QEMU_CACHEINFO_H
8 #define QEMU_CACHEINFO_H
11 * These variables represent our best guess at the host icache and
12 * dcache sizes, expressed both as the size in bytes and as the
13 * base-2 log of the size in bytes. They are initialized at startup
14 * (via an attribute 'constructor' function).
16 extern int qemu_icache_linesize;
17 extern int qemu_icache_linesize_log;
18 extern int qemu_dcache_linesize;
19 extern int qemu_dcache_linesize_log;
21 #endif