Update dgemm_kernel_4x8_haswell.S
[platform/upstream/openblas.git] / cpuid_mips.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_P5600       1
75 #define CPU_1004K       2
76
77 static char *cpuname[] = {
78   "UNKNOWN",
79   "P5600",
80   "1004K"
81 };
82
83 int detect(void){
84
85 #ifdef linux
86   FILE *infile;
87   char buffer[512], *p;
88
89   p = (char *)NULL;
90   infile = fopen("/proc/cpuinfo", "r");
91   while (fgets(buffer, sizeof(buffer), infile)){
92     if (!strncmp("cpu", buffer, 3)){
93         p = strchr(buffer, ':') + 2;
94 #if 0
95         fprintf(stderr, "%s \n", p);
96 #endif
97         break;
98       }
99   }
100
101   fclose(infile);
102
103   if(p != NULL){
104   if (strstr(p, "5600")) {
105     return CPU_P5600;
106   } else if (strstr(p, "1004K")) {
107     return CPU_1004K;
108   } else  
109     return CPU_UNKNOWN;
110   }
111 #endif
112     return CPU_UNKNOWN;
113 }
114
115 char *get_corename(void){
116   return cpuname[detect()];
117 }
118
119 void get_architecture(void){
120   printf("MIPS");
121 }
122
123 void get_subarchitecture(void){
124   if(detect()==CPU_P5600|| detect()==CPU_1004K){
125     printf("P5600");
126   }else{
127     printf("UNKNOWN");
128   }
129 }
130
131 void get_subdirname(void){
132   printf("mips");
133 }
134
135 void get_cpuconfig(void){
136   if(detect()==CPU_P5600){
137     printf("#define P5600\n");
138     printf("#define L1_DATA_SIZE 65536\n");
139     printf("#define L1_DATA_LINESIZE 32\n");
140     printf("#define L2_SIZE 1048576\n");
141     printf("#define L2_LINESIZE 32\n");
142     printf("#define DTB_DEFAULT_ENTRIES 64\n");
143     printf("#define DTB_SIZE 4096\n");
144     printf("#define L2_ASSOCIATIVE 8\n");
145   } else if (detect()==CPU_1004K) {
146     printf("#define MIPS1004K\n");
147     printf("#define L1_DATA_SIZE 32768\n");
148     printf("#define L1_DATA_LINESIZE 32\n");
149     printf("#define L2_SIZE 26144\n");
150     printf("#define DTB_DEFAULT_ENTRIES 8\n");
151     printf("#define DTB_SIZE 4096\n");
152     printf("#define L2_ASSOCIATIVE 4\n");
153   }else{
154     printf("#define UNKNOWN\n");
155   }
156 }
157
158 void get_libname(void){
159   if(detect()==CPU_P5600) {
160     printf("p5600\n");
161   } else if (detect()==CPU_1004K) {
162     printf("1004K\n");
163   }else{
164     printf("mips\n");
165   }
166 }