blob: 1942287f33d9500417b75c3781aaa4f61b0cf9ae [file] [log] [blame]
Eduardo Habkost247c9de2013-01-23 15:58:27 -02001/*
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
Peter Maydell681c28a2016-02-08 18:08:51 +000025#include "qemu/osdep.h"
Eduardo Habkost247c9de2013-01-23 15:58:27 -020026
Eduardo Habkost869b7642014-12-18 23:41:06 -020027#include "hw/i386/topology.h"
Eduardo Habkost247c9de2013-01-23 15:58:27 -020028
29static void test_topo_bits(void)
30{
Like Xud65af282019-06-12 16:40:59 +080031 /* 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);
Eduardo Habkost247c9de2013-01-23 15:58:27 -020035
Like Xud65af282019-06-12 16:40:59 +080036 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);
Eduardo Habkost247c9de2013-01-23 15:58:27 -020040
41
42 /* Test field width calculation for multiple values
43 */
Like Xud65af282019-06-12 16:40:59 +080044 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);
Eduardo Habkost247c9de2013-01-23 15:58:27 -020047
Like Xud65af282019-06-12 16:40:59 +080048 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);
Eduardo Habkost247c9de2013-01-23 15:58:27 -020052
53
Like Xud65af282019-06-12 16:40:59 +080054 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);
Eduardo Habkost247c9de2013-01-23 15:58:27 -020058
Like Xud65af282019-06-12 16:40:59 +080059 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);
Eduardo Habkost247c9de2013-01-23 15:58:27 -020063
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 */
Like Xud65af282019-06-12 16:40:59 +080069 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);
Eduardo Habkost247c9de2013-01-23 15:58:27 -020073
Like Xud65af282019-06-12 16:40:59 +080074 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);
Eduardo Habkost247c9de2013-01-23 15:58:27 -020077
Like Xud65af282019-06-12 16:40:59 +080078 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 1 * 3 + 0), ==,
Eduardo Habkost247c9de2013-01-23 15:58:27 -020079 (1 << 2) | 0);
Like Xud65af282019-06-12 16:40:59 +080080 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 1 * 3 + 1), ==,
Eduardo Habkost247c9de2013-01-23 15:58:27 -020081 (1 << 2) | 1);
Like Xud65af282019-06-12 16:40:59 +080082 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 1 * 3 + 2), ==,
Eduardo Habkost247c9de2013-01-23 15:58:27 -020083 (1 << 2) | 2);
84
Like Xud65af282019-06-12 16:40:59 +080085 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 2 * 3 + 0), ==,
Eduardo Habkost247c9de2013-01-23 15:58:27 -020086 (2 << 2) | 0);
Like Xud65af282019-06-12 16:40:59 +080087 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 2 * 3 + 1), ==,
Eduardo Habkost247c9de2013-01-23 15:58:27 -020088 (2 << 2) | 1);
Like Xud65af282019-06-12 16:40:59 +080089 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 2 * 3 + 2), ==,
Eduardo Habkost247c9de2013-01-23 15:58:27 -020090 (2 << 2) | 2);
91
Like Xud65af282019-06-12 16:40:59 +080092 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 5 * 3 + 0), ==,
Eduardo Habkost247c9de2013-01-23 15:58:27 -020093 (5 << 2) | 0);
Like Xud65af282019-06-12 16:40:59 +080094 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 5 * 3 + 1), ==,
Eduardo Habkost247c9de2013-01-23 15:58:27 -020095 (5 << 2) | 1);
Like Xud65af282019-06-12 16:40:59 +080096 g_assert_cmpuint(x86_apicid_from_cpu_idx(1, 6, 3, 5 * 3 + 2), ==,
Eduardo Habkost247c9de2013-01-23 15:58:27 -020097 (5 << 2) | 2);
98
Like Xud65af282019-06-12 16:40:59 +080099 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);
Eduardo Habkost247c9de2013-01-23 15:58:27 -0200105}
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}