xref: /dpdk/app/test/test_cpuflags.c (revision fc1f2750a3ec6da919e3c86e59d56f34ec97154b)
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #include <stdio.h>
35 
36 #include <errno.h>
37 #include <stdint.h>
38 #include <rte_cpuflags.h>
39 #include <rte_debug.h>
40 
41 #include "test.h"
42 
43 
44 /* convenience define */
45 #define CHECK_FOR_FLAG(x) \
46 			result = rte_cpu_get_flag_enabled(x);    \
47 			printf("%s\n", cpu_flag_result(result)); \
48 			if (result == -ENOENT)                   \
49 				return -1;
50 
51 /*
52  * Helper function to display result
53  */
54 static inline const char *
55 cpu_flag_result(int result)
56 {
57 	switch (result) {
58 	case 0:
59 		return "NOT PRESENT";
60 	case 1:
61 		return "OK";
62 	default:
63 		return "ERROR";
64 	}
65 }
66 
67 
68 
69 /*
70  * CPUID test
71  * ===========
72  *
73  * - Check flags from different registers with rte_cpu_get_flag_enabled()
74  * - Check if register and CPUID functions fail properly
75  */
76 
77 static int
78 test_cpuflags(void)
79 {
80 	int result;
81 	printf("\nChecking for flags from different registers...\n");
82 
83 	printf("Check for SSE:\t\t");
84 	CHECK_FOR_FLAG(RTE_CPUFLAG_SSE);
85 
86 	printf("Check for SSE2:\t\t");
87 	CHECK_FOR_FLAG(RTE_CPUFLAG_SSE2);
88 
89 	printf("Check for SSE3:\t\t");
90 	CHECK_FOR_FLAG(RTE_CPUFLAG_SSE3);
91 
92 	printf("Check for SSE4.1:\t");
93 	CHECK_FOR_FLAG(RTE_CPUFLAG_SSE4_1);
94 
95 	printf("Check for SSE4.2:\t");
96 	CHECK_FOR_FLAG(RTE_CPUFLAG_SSE4_2);
97 
98 	printf("Check for AVX:\t\t");
99 	CHECK_FOR_FLAG(RTE_CPUFLAG_AVX);
100 
101 	printf("Check for AVX2:\t\t");
102 	CHECK_FOR_FLAG(RTE_CPUFLAG_AVX2);
103 
104 	printf("Check for TRBOBST:\t");
105 	CHECK_FOR_FLAG(RTE_CPUFLAG_TRBOBST);
106 
107 	printf("Check for ENERGY_EFF:\t");
108 	CHECK_FOR_FLAG(RTE_CPUFLAG_ENERGY_EFF);
109 
110 	printf("Check for LAHF_SAHF:\t");
111 	CHECK_FOR_FLAG(RTE_CPUFLAG_LAHF_SAHF);
112 
113 	printf("Check for 1GB_PG:\t");
114 	CHECK_FOR_FLAG(RTE_CPUFLAG_1GB_PG);
115 
116 	printf("Check for INVTSC:\t");
117 	CHECK_FOR_FLAG(RTE_CPUFLAG_INVTSC);
118 
119 
120 
121 	/*
122 	 * Check if invalid data is handled properly
123 	 */
124 	printf("\nCheck for invalid flag:\t");
125 	result = rte_cpu_get_flag_enabled(RTE_CPUFLAG_NUMFLAGS);
126 	printf("%s\n", cpu_flag_result(result));
127 	if (result != -ENOENT)
128 		return -1;
129 
130 	return 0;
131 }
132 
133 static struct test_command cpuflags_cmd = {
134 	.command = "cpuflags_autotest",
135 	.callback = test_cpuflags,
136 };
137 REGISTER_TEST_COMMAND(cpuflags_cmd);
138