Merge pull request #1226 from ashwinyes/develop_arm_clang_ual_fix
[platform/upstream/openblas.git] / cpuid_mips64.c
1 /*****************************************************************************
2 Copyright (c) 2011-2014, The OpenBLAS Project
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are
7 met:
8
9    1. Redistributions of source code must retain the above copyright
10       notice, this list of conditions and the following disclaimer.
11
12    2. Redistributions in binary form must reproduce the above copyright
13       notice, this list of conditions and the following disclaimer in
14       the documentation and/or other materials provided with the
15       distribution.
16    3. Neither the name of the OpenBLAS project nor the names of 
17       its contributors may be used to endorse or promote products 
18       derived from this software without specific prior written 
19       permission.
20
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
30 USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32 **********************************************************************************/
33
34
35 /*********************************************************************/
36 /* Copyright 2009, 2010 The University of Texas at Austin.           */
37 /* All rights reserved.                                              */
38 /*                                                                   */
39 /* Redistribution and use in source and binary forms, with or        */
40 /* without modification, are permitted provided that the following   */
41 /* conditions are met:                                               */
42 /*                                                                   */
43 /*   1. Redistributions of source code must retain the above         */
44 /*      copyright notice, this list of conditions and the following  */
45 /*      disclaimer.                                                  */
46 /*                                                                   */
47 /*   2. Redistributions in binary form must reproduce the above      */
48 /*      copyright notice, this list of conditions and the following  */
49 /*      disclaimer in the documentation and/or other materials       */
50 /*      provided with the distribution.                              */
51 /*                                                                   */
52 /*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
53 /*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
54 /*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
55 /*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
56 /*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
57 /*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
58 /*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
59 /*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
60 /*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
61 /*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
62 /*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
63 /*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
64 /*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
65 /*    POSSIBILITY OF SUCH DAMAGE.                                    */
66 /*                                                                   */
67 /* The views and conclusions contained in the software and           */
68 /* documentation are those of the authors and should not be          */
69 /* interpreted as representing official policies, either expressed   */
70 /* or implied, of The University of Texas at Austin.                 */
71 /*********************************************************************/
72
73 #define CPU_UNKNOWN     0
74 #define CPU_SICORTEX    1
75 #define CPU_LOONGSON3A  2
76 #define CPU_LOONGSON3B  3
77 #define CPU_I6400       4
78 #define CPU_P6600       5
79
80 static char *cpuname[] = {
81   "UNKOWN",
82   "SICORTEX",
83   "LOONGSON3A",
84   "LOONGSON3B",
85   "I6400",
86   "P6600"
87 };
88
89 int detect(void){
90
91 #ifdef linux
92   FILE *infile;
93   char buffer[512], *p;
94
95   p = (char *)NULL;
96   infile = fopen("/proc/cpuinfo", "r");
97   while (fgets(buffer, sizeof(buffer), infile)){
98     if (!strncmp("cpu", buffer, 3)){
99         p = strchr(buffer, ':') + 2;
100 #if 0
101         fprintf(stderr, "%s\n", p);
102 #endif
103         break;
104       }
105   }
106
107   fclose(infile);
108
109   if(p != NULL){
110   if (strstr(p, "Loongson-3A")){
111     return CPU_LOONGSON3A;
112   }else if(strstr(p, "Loongson-3B")){
113     return CPU_LOONGSON3B;
114   }else if (strstr(p, "Loongson-3")){
115     infile = fopen("/proc/cpuinfo", "r");
116     p = (char *)NULL;
117     while (fgets(buffer, sizeof(buffer), infile)){
118       if (!strncmp("system type", buffer, 11)){
119         p = strchr(buffer, ':') + 2;
120         break;
121       }
122     }
123     fclose(infile);
124     if (strstr(p, "loongson3a"))
125       return CPU_LOONGSON3A;
126   }else{
127     return CPU_SICORTEX;
128   }
129   }
130   //Check model name for Loongson3
131   infile = fopen("/proc/cpuinfo", "r");
132   p = (char *)NULL;
133   while (fgets(buffer, sizeof(buffer), infile)){
134     if (!strncmp("model name", buffer, 10)){
135       p = strchr(buffer, ':') + 2;
136       break;
137     }
138   }
139   fclose(infile);
140   if(p != NULL){
141   if (strstr(p, "Loongson-3A")){
142     return CPU_LOONGSON3A;
143   }else if(strstr(p, "Loongson-3B")){
144     return CPU_LOONGSON3B;
145   }
146   }
147 #endif
148     return CPU_UNKNOWN;
149 }
150
151 char *get_corename(void){
152   return cpuname[detect()];
153 }
154
155 void get_architecture(void){
156   printf("MIPS64");
157 }
158
159 void get_subarchitecture(void){
160   if(detect()==CPU_LOONGSON3A) {
161     printf("LOONGSON3A");
162   }else if(detect()==CPU_LOONGSON3B){
163     printf("LOONGSON3B");
164   }else if(detect()==CPU_I6400){
165     printf("I6400");
166   }else if(detect()==CPU_P6600){
167     printf("P6600");
168   }else{
169     printf("SICORTEX");
170   }
171 }
172
173 void get_subdirname(void){
174   printf("mips64");
175 }
176
177 void get_cpuconfig(void){
178   if(detect()==CPU_LOONGSON3A) {
179     printf("#define LOONGSON3A\n");
180     printf("#define L1_DATA_SIZE 65536\n");
181     printf("#define L1_DATA_LINESIZE 32\n");
182     printf("#define L2_SIZE 512488\n");
183     printf("#define L2_LINESIZE 32\n");
184     printf("#define DTB_DEFAULT_ENTRIES 64\n");
185     printf("#define DTB_SIZE 4096\n");
186     printf("#define L2_ASSOCIATIVE 4\n");
187   }else if(detect()==CPU_LOONGSON3B){
188     printf("#define LOONGSON3B\n");
189     printf("#define L1_DATA_SIZE 65536\n");
190     printf("#define L1_DATA_LINESIZE 32\n");
191     printf("#define L2_SIZE 512488\n");
192     printf("#define L2_LINESIZE 32\n");
193     printf("#define DTB_DEFAULT_ENTRIES 64\n");
194     printf("#define DTB_SIZE 4096\n");
195     printf("#define L2_ASSOCIATIVE 4\n");
196   }else if(detect()==CPU_I6400){
197     printf("#define I6400\n");
198     printf("#define L1_DATA_SIZE 65536\n");
199     printf("#define L1_DATA_LINESIZE 32\n");
200     printf("#define L2_SIZE 1048576\n");
201     printf("#define L2_LINESIZE 32\n");
202     printf("#define DTB_DEFAULT_ENTRIES 64\n");
203     printf("#define DTB_SIZE 4096\n");
204     printf("#define L2_ASSOCIATIVE 8\n");
205   }else if(detect()==CPU_P6600){
206     printf("#define P6600\n");
207     printf("#define L1_DATA_SIZE 65536\n");
208     printf("#define L1_DATA_LINESIZE 32\n");
209     printf("#define L2_SIZE 1048576\n");
210     printf("#define L2_LINESIZE 32\n");
211     printf("#define DTB_DEFAULT_ENTRIES 64\n");
212     printf("#define DTB_SIZE 4096\n");
213     printf("#define L2_ASSOCIATIVE 8\n");
214   }else{
215     printf("#define SICORTEX\n");
216     printf("#define L1_DATA_SIZE 32768\n");
217     printf("#define L1_DATA_LINESIZE 32\n");
218     printf("#define L2_SIZE 512488\n");
219     printf("#define L2_LINESIZE 32\n");
220     printf("#define DTB_DEFAULT_ENTRIES 32\n");
221     printf("#define DTB_SIZE 4096\n");
222     printf("#define L2_ASSOCIATIVE 8\n");
223   }
224 }
225
226 void get_libname(void){
227   if(detect()==CPU_LOONGSON3A) {
228     printf("loongson3a\n");
229   }else if(detect()==CPU_LOONGSON3B) {
230     printf("loongson3b\n");
231   }else if(detect()==CPU_I6400) {
232     printf("i6400\n");
233   }else if(detect()==CPU_P6600) {
234     printf("p6600\n");
235   }else{
236     printf("mips64\n");
237   }
238 }