2 * cacheinfo.c - helpers to query the host about its caches
4 * Copyright (C) 2017, Emilio G. Cota <cota@braap.org>
5 * License: GNU GPL, version 2 or later.
6 * See the COPYING file in the top-level directory.
9 #include "qemu/osdep.h"
10 #include "qemu/host-utils.h"
11 #include "qemu/atomic.h"
13 int qemu_icache_linesize
= 0;
14 int qemu_icache_linesize_log
;
15 int qemu_dcache_linesize
= 0;
16 int qemu_dcache_linesize_log
;
19 * Operating system specific detection mechanisms.
24 static void sys_cache_info(int *isize
, int *dsize
)
26 SYSTEM_LOGICAL_PROCESSOR_INFORMATION
*buf
;
31 /* Check for the required buffer size first. Note that if the zero
32 size we use for the probe results in success, then there is no
33 data available; fail in that case. */
34 success
= GetLogicalProcessorInformation(0, &size
);
35 if (success
|| GetLastError() != ERROR_INSUFFICIENT_BUFFER
) {
39 n
= size
/ sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION
);
40 size
= n
* sizeof(SYSTEM_LOGICAL_PROCESSOR_INFORMATION
);
41 buf
= g_new0(SYSTEM_LOGICAL_PROCESSOR_INFORMATION
, n
);
42 if (!GetLogicalProcessorInformation(buf
, &size
)) {
46 for (i
= 0; i
< n
; i
++) {
47 if (buf
[i
].Relationship
== RelationCache
48 && buf
[i
].Cache
.Level
== 1) {
49 switch (buf
[i
].Cache
.Type
) {
51 *isize
= *dsize
= buf
[i
].Cache
.LineSize
;
53 case CacheInstruction
:
54 *isize
= buf
[i
].Cache
.LineSize
;
57 *dsize
= buf
[i
].Cache
.LineSize
;
68 #elif defined(__APPLE__) \
69 || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
70 # include <sys/sysctl.h>
71 # if defined(__APPLE__)
72 # define SYSCTL_CACHELINE_NAME "hw.cachelinesize"
74 # define SYSCTL_CACHELINE_NAME "machdep.cacheline_size"
77 static void sys_cache_info(int *isize
, int *dsize
)
79 /* There's only a single sysctl for both I/D cache line sizes. */
81 size_t len
= sizeof(size
);
82 if (!sysctlbyname(SYSCTL_CACHELINE_NAME
, &size
, &len
, NULL
, 0)) {
83 *isize
= *dsize
= size
;
90 static void sys_cache_info(int *isize
, int *dsize
)
92 # ifdef _SC_LEVEL1_ICACHE_LINESIZE
93 *isize
= sysconf(_SC_LEVEL1_ICACHE_LINESIZE
);
95 # ifdef _SC_LEVEL1_DCACHE_LINESIZE
96 *dsize
= sysconf(_SC_LEVEL1_DCACHE_LINESIZE
);
99 #endif /* sys_cache_info */
102 * Architecture (+ OS) specific detection mechanisms.
105 #if defined(__aarch64__)
107 static void arch_cache_info(int *isize
, int *dsize
)
109 if (*isize
== 0 || *dsize
== 0) {
112 /* The real cache geometry is in CCSIDR_EL1/CLIDR_EL1/CSSELR_EL1,
113 but (at least under Linux) these are marked protected by the
114 kernel. However, CTR_EL0 contains the minimum linesize in the
115 entire hierarchy, and is used by userspace cache flushing. */
116 asm volatile("mrs\t%0, ctr_el0" : "=r"(ctr
));
118 *isize
= 4 << (ctr
& 0xf);
121 *dsize
= 4 << ((ctr
>> 16) & 0xf);
126 #elif defined(_ARCH_PPC) && defined(__linux__)
129 static void arch_cache_info(int *isize
, int *dsize
)
132 *isize
= qemu_getauxval(AT_ICACHEBSIZE
);
135 *dsize
= qemu_getauxval(AT_DCACHEBSIZE
);
140 static void arch_cache_info(int *isize
, int *dsize
) { }
141 #endif /* arch_cache_info */
144 * ... and if all else fails ...
147 static void fallback_cache_info(int *isize
, int *dsize
)
149 /* If we can only find one of the two, assume they're the same. */
159 #if defined(_ARCH_PPC)
160 /* For PPC, we're going to use the icache size computed for
161 flush_icache_range. Which means that we must use the
162 architecture minimum. */
163 *isize
= *dsize
= 16;
165 /* Otherwise, 64 bytes is not uncommon. */
166 *isize
= *dsize
= 64;
171 static void __attribute__((constructor
)) init_cache_info(void)
173 int isize
= 0, dsize
= 0;
175 sys_cache_info(&isize
, &dsize
);
176 arch_cache_info(&isize
, &dsize
);
177 fallback_cache_info(&isize
, &dsize
);
179 assert((isize
& (isize
- 1)) == 0);
180 assert((dsize
& (dsize
- 1)) == 0);
182 qemu_icache_linesize
= isize
;
183 qemu_icache_linesize_log
= ctz32(isize
);
184 qemu_dcache_linesize
= dsize
;
185 qemu_dcache_linesize_log
= ctz32(dsize
);