You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

cpuid_power.c 5.8 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*********************************************************************/
  2. /* Copyright 2009, 2010 The University of Texas at Austin. */
  3. /* All rights reserved. */
  4. /* */
  5. /* Redistribution and use in source and binary forms, with or */
  6. /* without modification, are permitted provided that the following */
  7. /* conditions are met: */
  8. /* */
  9. /* 1. Redistributions of source code must retain the above */
  10. /* copyright notice, this list of conditions and the following */
  11. /* disclaimer. */
  12. /* */
  13. /* 2. Redistributions in binary form must reproduce the above */
  14. /* copyright notice, this list of conditions and the following */
  15. /* disclaimer in the documentation and/or other materials */
  16. /* provided with the distribution. */
  17. /* */
  18. /* THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF TEXAS AT */
  19. /* AUSTIN ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, */
  20. /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */
  21. /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
  22. /* DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF TEXAS AT */
  23. /* AUSTIN OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, */
  24. /* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
  25. /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE */
  26. /* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR */
  27. /* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF */
  28. /* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  29. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT */
  30. /* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */
  31. /* POSSIBILITY OF SUCH DAMAGE. */
  32. /* */
  33. /* The views and conclusions contained in the software and */
  34. /* documentation are those of the authors and should not be */
  35. /* interpreted as representing official policies, either expressed */
  36. /* or implied, of The University of Texas at Austin. */
  37. /*********************************************************************/
  38. #include <sys/utsname.h>
  39. #ifdef _AIX
  40. #include <sys/vminfo.h>
  41. #endif
  42. #ifdef __APPLE__
  43. #include <mach/mach.h>
  44. #include <mach/mach_host.h>
  45. #include <mach/host_info.h>
  46. #include <mach/machine.h>
  47. #endif
  48. #define CPUTYPE_UNKNOWN 0
  49. #define CPUTYPE_POWER3 1
  50. #define CPUTYPE_POWER4 2
  51. #define CPUTYPE_PPC970 3
  52. #define CPUTYPE_POWER5 4
  53. #define CPUTYPE_POWER6 5
  54. #define CPUTYPE_CELL 6
  55. #define CPUTYPE_PPCG4 7
  56. #define CPUTYPE_POWER8 8
  57. char *cpuname[] = {
  58. "UNKNOWN",
  59. "POWER3",
  60. "POWER4",
  61. "PPC970",
  62. "POWER5",
  63. "POWER6",
  64. "CELL",
  65. "PPCG4",
  66. "POWER8"
  67. };
  68. char *lowercpuname[] = {
  69. "unknown",
  70. "power3",
  71. "power4",
  72. "ppc970",
  73. "power5",
  74. "power6",
  75. "cell",
  76. "ppcg4",
  77. "power8"
  78. };
  79. char *corename[] = {
  80. "UNKNOWN",
  81. "POWER3",
  82. "POWER4",
  83. "POWER4",
  84. "POWER4",
  85. "POWER6",
  86. "CELL",
  87. "PPCG4",
  88. "POWER8"
  89. };
  90. int detect(void){
  91. #ifdef linux
  92. FILE *infile;
  93. char buffer[512], *p;
  94. p = (char *)NULL;
  95. infile = fopen("/proc/cpuinfo", "r");
  96. while (fgets(buffer, sizeof(buffer), infile)){
  97. if (!strncmp("cpu", buffer, 3)){
  98. p = strchr(buffer, ':') + 2;
  99. #if 0
  100. fprintf(stderr, "%s\n", p);
  101. #endif
  102. break;
  103. }
  104. }
  105. fclose(infile);
  106. if (!strncasecmp(p, "POWER3", 6)) return CPUTYPE_POWER3;
  107. if (!strncasecmp(p, "POWER4", 6)) return CPUTYPE_POWER4;
  108. if (!strncasecmp(p, "PPC970", 6)) return CPUTYPE_PPC970;
  109. if (!strncasecmp(p, "POWER5", 6)) return CPUTYPE_POWER5;
  110. if (!strncasecmp(p, "POWER6", 6)) return CPUTYPE_POWER6;
  111. if (!strncasecmp(p, "POWER7", 6)) return CPUTYPE_POWER6;
  112. if (!strncasecmp(p, "POWER8", 6)) return CPUTYPE_POWER8;
  113. if (!strncasecmp(p, "Cell", 4)) return CPUTYPE_CELL;
  114. if (!strncasecmp(p, "7447", 4)) return CPUTYPE_PPCG4;
  115. return CPUTYPE_UNKNOWN;
  116. #endif
  117. #ifdef _AIX
  118. return CPUTYPE_POWER5;
  119. #endif
  120. #ifdef __APPLE__
  121. host_basic_info_data_t hostInfo;
  122. mach_msg_type_number_t infoCount;
  123. infoCount = HOST_BASIC_INFO_COUNT;
  124. host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, &infoCount);
  125. if (hostInfo.cpu_subtype == CPU_SUBTYPE_POWERPC_7450) return CPUTYPE_PPCG4;
  126. if (hostInfo.cpu_subtype == CPU_SUBTYPE_POWERPC_970) return CPUTYPE_PPC970;
  127. return CPUTYPE_PPC970;
  128. #endif
  129. }
  130. void get_architecture(void){
  131. printf("POWER");
  132. }
  133. void get_subdirname(void){
  134. printf("power");
  135. }
  136. void get_subarchitecture(void){
  137. printf("%s", cpuname[detect()]);
  138. }
  139. void get_cpuconfig(void){
  140. #if 0
  141. #ifdef _AIX
  142. struct vminfo info;
  143. #endif
  144. #endif
  145. printf("#define %s\n", cpuname[detect()]);
  146. printf("#define CORE_%s\n", corename[detect()]);
  147. printf("#define L1_DATA_SIZE 32768\n");
  148. printf("#define L1_DATA_LINESIZE 128\n");
  149. printf("#define L2_SIZE 524288\n");
  150. printf("#define L2_LINESIZE 128 \n");
  151. printf("#define DTB_DEFAULT_ENTRIES 128\n");
  152. printf("#define DTB_SIZE 4096\n");
  153. printf("#define L2_ASSOCIATIVE 8\n");
  154. #if 0
  155. #ifdef _AIX
  156. if (vmgetinfo(&info, VMINFO, 0) == 0) {
  157. if ((info.lgpg_size >> 20) >= 1024) {
  158. printf("#define ALLOC_HUGETLB\n");
  159. }
  160. }
  161. #endif
  162. #endif
  163. }
  164. void get_libname(void){
  165. printf("%s", lowercpuname[detect()]);
  166. }
  167. char *get_corename(void){
  168. return cpuname[detect()];
  169. }