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
|
/* cpuid2cpuflags -- X86 CPUID native getter
* (c) 2015-2024 Michał Górny
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "platforms.h"
#ifdef CPUID_X86
#include <cpuid.h>
#include "x86.h"
/**
* Run native CPUID for specified level, and fill passed register
* variables (where not NULL).
*
* Returns 1 on sucess, 0 if not supported by the CPU.
*/
int run_cpuid(uint32_t level, uint32_t* eax, uint32_t* ebx, uint32_t* ecx, uint32_t* edx)
{
uint32_t eax_, ebx_, ecx_, edx_;
/* We can't use __get_cpuid() since it can't do Centaur extended
* flags (it's limited to Intel & AMD namespaces by poor design) */
/* TODO: we need to figure out if 0xN0000000 is even valid
* otherwise it will fallback to last supported CPUID... */
if (__get_cpuid_max(level & 0xf0000000, 0) < level)
return 0;
__cpuid(level, eax_, ebx_, ecx_, edx_);
if (eax)
*eax = eax_;
if (ebx)
*ebx = ebx_;
if (ecx)
*ecx = ecx_;
if (edx)
*edx = edx_;
return 1;
}
/**
* Run native CPUID for specified level and subleaf, and fill passed
* register variables (where not NULL).
*
* Returns 1 on sucess, 0 if not supported by the CPU.
*/
int run_cpuid_sub(uint32_t level, uint32_t sublevel, uint32_t* eax, uint32_t* ebx, uint32_t* ecx, uint32_t* edx)
{
uint32_t eax_, ebx_, ecx_, edx_;
if (__get_cpuid_max(level & 0xf0000000, 0) < level)
return 0;
__cpuid_count(level, sublevel, eax_, ebx_, ecx_, edx_);
if (eax)
*eax = eax_;
if (ebx)
*ebx = ebx_;
if (ecx)
*ecx = ecx_;
if (edx)
*edx = edx_;
return 1;
}
#endif
|