]> git.proxmox.com Git - mirror_qemu.git/blame - tests/test-x86-cpuid.c
i386: Update new x86_apicid parsing rules with die_offset support
[mirror_qemu.git] / tests / test-x86-cpuid.c
CommitLineData
247c9de1
EH
1/*
2 * Test code for x86 CPUID and Topology functions
3 *
4 * Copyright (c) 2012 Red Hat Inc.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
681c28a3 25#include "qemu/osdep.h"
247c9de1 26
869b7649 27#include "hw/i386/topology.h"
247c9de1
EH
28
29static void test_topo_bits(void)
30{
d65af288
LX
31 /* simple tests for 1 thread per core, 1 core per die, 1 die per package */
32 g_assert_cmpuint(apicid_smt_width(1, 1, 1), ==, 0);
33 g_assert_cmpuint(apicid_core_width(1, 1, 1), ==, 0);
34 g_assert_cmpuint(apicid_die_width(1, 1, 1), ==, 0);
247c9de1 35
d65af288
LX
36 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 1, 1, 0), ==, 0);
37 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 1, 1, 1), ==, 1);
38 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 1, 1, 2), ==, 2);
39 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 1, 1, 3), ==, 3);
247c9de1
EH
40
41
42 /* Test field width calculation for multiple values
43 */
d65af288
LX
44 g_assert_cmpuint(apicid_smt_width(1, 1, 2), ==, 1);
45 g_assert_cmpuint(apicid_smt_width(1, 1, 3), ==, 2);
46 g_assert_cmpuint(apicid_smt_width(1, 1, 4), ==, 2);
247c9de1 47
d65af288
LX
48 g_assert_cmpuint(apicid_smt_width(1, 1, 14), ==, 4);
49 g_assert_cmpuint(apicid_smt_width(1, 1, 15), ==, 4);
50 g_assert_cmpuint(apicid_smt_width(1, 1, 16), ==, 4);
51 g_assert_cmpuint(apicid_smt_width(1, 1, 17), ==, 5);
247c9de1
EH
52
53
d65af288
LX
54 g_assert_cmpuint(apicid_core_width(1, 30, 2), ==, 5);
55 g_assert_cmpuint(apicid_core_width(1, 31, 2), ==, 5);
56 g_assert_cmpuint(apicid_core_width(1, 32, 2), ==, 5);
57 g_assert_cmpuint(apicid_core_width(1, 33, 2), ==, 6);
247c9de1 58
d65af288
LX
59 g_assert_cmpuint(apicid_die_width(1, 30, 2), ==, 0);
60 g_assert_cmpuint(apicid_die_width(2, 30, 2), ==, 1);
61 g_assert_cmpuint(apicid_die_width(3, 30, 2), ==, 2);
62 g_assert_cmpuint(apicid_die_width(4, 30, 2), ==, 2);
247c9de1
EH
63
64 /* build a weird topology and see if IDs are calculated correctly
65 */
66
67 /* This will use 2 bits for thread ID and 3 bits for core ID
68 */
d65af288
LX
69 g_assert_cmpuint(apicid_smt_width(1, 6, 3), ==, 2);
70 g_assert_cmpuint(apicid_core_offset(1, 6, 3), ==, 2);
71 g_assert_cmpuint(apicid_die_offset(1, 6, 3), ==, 5);
72 g_assert_cmpuint(apicid_pkg_offset(1, 6, 3), ==, 5);
247c9de1 73
d65af288
LX
74 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 0), ==, 0);
75 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 1), ==, 1);
76 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 2), ==, 2);
247c9de1 77
d65af288 78 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 1 * 3 + 0), ==,
247c9de1 79 (1 << 2) | 0);
d65af288 80 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 1 * 3 + 1), ==,
247c9de1 81 (1 << 2) | 1);
d65af288 82 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 1 * 3 + 2), ==,
247c9de1
EH
83 (1 << 2) | 2);
84
d65af288 85 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 2 * 3 + 0), ==,
247c9de1 86 (2 << 2) | 0);
d65af288 87 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 2 * 3 + 1), ==,
247c9de1 88 (2 << 2) | 1);
d65af288 89 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 2 * 3 + 2), ==,
247c9de1
EH
90 (2 << 2) | 2);
91
d65af288 92 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 5 * 3 + 0), ==,
247c9de1 93 (5 << 2) | 0);
d65af288 94 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 5 * 3 + 1), ==,
247c9de1 95 (5 << 2) | 1);
d65af288 96 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 5 * 3 + 2), ==,
247c9de1
EH
97 (5 << 2) | 2);
98
d65af288
LX
99 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3,
100 1 * 6 * 3 + 0 * 3 + 0), ==, (1 << 5));
101 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3,
102 1 * 6 * 3 + 1 * 3 + 1), ==, (1 << 5) | (1 << 2) | 1);
103 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3,
104 3 * 6 * 3 + 5 * 3 + 2), ==, (3 << 5) | (5 << 2) | 2);
247c9de1
EH
105}
106
107int main(int argc, char **argv)
108{
109 g_test_init(&argc, &argv, NULL);
110
111 g_test_add_func("/cpuid/topology/basic", test_topo_bits);
112
113 g_test_run();
114
115 return 0;
116}