first public release
[dpdk.git] / app / test / test_cpuflags.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 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  *  version: DPDK.L.1.2.3-3
34  */
35
36 #include <stdio.h>
37
38 #include <cmdline_parse.h>
39 #include <errno.h>
40 #include <stdint.h>
41 #include <rte_cpuflags.h>
42 #include <rte_debug.h>
43
44 #include "test.h"
45
46
47 /* convenience define */
48 #define CHECK_FOR_FLAG(x) \
49                         result = rte_cpu_get_flag_enabled(x);    \
50                         printf("%s\n", cpu_flag_result(result)); \
51                         if (result == -ENOENT)                   \
52                                 return -1;
53
54 /*
55  * Helper function to display result
56  */
57 static inline const char *
58 cpu_flag_result(int result)
59 {
60         switch (result) {
61         case 0:
62                 return "NOT PRESENT";
63         case 1:
64                 return "OK";
65         default:
66                 return "ERROR";
67         }
68 }
69
70
71
72 /*
73  * CPUID test
74  * ===========
75  *
76  * - Check flags from different registers with rte_cpu_get_flag_enabled()
77  * - Check if register and CPUID functions fail properly
78  */
79
80 int
81 test_cpuflags(void)
82 {
83         int result;
84         printf("\nChecking for flags from different registers...\n");
85
86         printf("Check for SSE:\t\t");
87         CHECK_FOR_FLAG(RTE_CPUFLAG_SSE);
88
89         printf("Check for SSE2:\t\t");
90         CHECK_FOR_FLAG(RTE_CPUFLAG_SSE2);
91
92         printf("Check for SSE3:\t\t");
93         CHECK_FOR_FLAG(RTE_CPUFLAG_SSE3);
94
95         printf("Check for SSE4.1:\t");
96         CHECK_FOR_FLAG(RTE_CPUFLAG_SSE4_1);
97
98         printf("Check for SSE4.2:\t");
99         CHECK_FOR_FLAG(RTE_CPUFLAG_SSE4_2);
100
101         printf("Check for AVX:\t\t");
102         CHECK_FOR_FLAG(RTE_CPUFLAG_AVX);
103
104         printf("Check for AVX2:\t\t");
105         CHECK_FOR_FLAG(RTE_CPUFLAG_AVX2);
106
107         printf("Check for TRBOBST:\t");
108         CHECK_FOR_FLAG(RTE_CPUFLAG_TRBOBST);
109
110         printf("Check for ENERGY_EFF:\t");
111         CHECK_FOR_FLAG(RTE_CPUFLAG_ENERGY_EFF);
112
113         printf("Check for LAHF_SAHF:\t");
114         CHECK_FOR_FLAG(RTE_CPUFLAG_LAHF_SAHF);
115
116         printf("Check for 1GB_PG:\t");
117         CHECK_FOR_FLAG(RTE_CPUFLAG_1GB_PG);
118
119         printf("Check for INVTSC:\t");
120         CHECK_FOR_FLAG(RTE_CPUFLAG_INVTSC);
121
122
123
124         /*
125          * Check if invalid data is handled properly
126          */
127         printf("\nCheck for invalid flag:\t");
128         result = rte_cpu_get_flag_enabled(RTE_CPUFLAG_NUMFLAGS);
129         printf("%s\n", cpu_flag_result(result));
130         if (result != -ENOENT)
131                 return -1;
132
133         return 0;
134 }