cpuident.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _CPUIDENT_H_
  36. #define _CPUIDENT_H_
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. /*
  41.  * CPU architectures. Currently, only Intel architectures (x86) and ARM are
  42.  * detected by this code.
  43.  */
  44. typedef enum
  45. {
  46.     ulArchitectureUNKNOWN = 0,
  47.     ulArchitectureIntel   = 1,
  48.     ulArchitectureARM_ARCH2 = 2,
  49.     ulArchitectureARM_ARCH3 = 3,
  50.     ulArchitectureARM_ARCH4 = 4,
  51.     ulArchitectureARM_ARCH4T= 5,
  52.     ulArchitectureARM_ARCH5 = 6,
  53.     ulArchitectureARM_ARCH5T= 7,
  54.     ulArchitectureARM_ARCH5TE=8
  55. } CPUArchitecture;
  56. /*
  57.  * Intel Architecture processor families.
  58.  * Do not change these values -- they match with the results of the cpuid()
  59.  * instruction.
  60.  * Refer to Intel document number 24319202, section 8.1.3.
  61.  */
  62. typedef enum
  63. {
  64.     ulFamilyUNKNOWN     =  0,
  65.     ulFamily80386       =  3,
  66.     ulFamily80486       =  4,
  67.     ulFamilyPENTIUM     =  5,
  68.     ulFamilyPENTIUM_PRO =  6,
  69.     ulFamilyP4          =  15
  70. } IntelCPUFamily;
  71. /*
  72.  * ARM architecture families
  73.  */
  74. typedef enum
  75. {
  76.     ulFamily_PREARM7 = ulFamilyUNKNOWN + 1,
  77.     ulFamily_ARM7,
  78.     ulFamily_POSTARM7
  79. } ARMCPUFamily;
  80. /*
  81.  * Intel architecture specific features
  82.  */
  83. typedef struct
  84. {
  85.     IntelCPUFamily family ;
  86.     int model ;
  87.     int stepping ;
  88.     int hasMMX; /* MMX instructions available? */
  89.     int hasMSR; /* model specific registers (Pentium) available? */
  90.     int hasTSC; /* rdtsc / Time stamp counter available? */
  91.     int hasPMC; /* rdpmc / Performance monitoring counter available? */
  92.     int hasSSE; /* Katmai new instructions (SSE) available? */
  93.     int hasSSE_OSSupport; /* OS support for SSE floating point available? */
  94.     int hasSSE2; /* SSE2 instructions available? */
  95. } IntelCPUInformation ;
  96. typedef struct
  97. {
  98.     int family ;
  99.     //    int architecture ;
  100.     int implementor ;
  101.     char description[128] ;
  102.     // only valid if family >= ARM7
  103.     int variant ;
  104.     int primaryPartNo ;
  105.     int revision ;
  106.     union
  107.     {
  108.         struct {
  109.             int coreGeneration ;
  110.             int coreRevision ;
  111.             int productNumber ;
  112. } XScale ;
  113.     } specific ;
  114. } ARMCPUInformation ;
  115. /*
  116.  * ARM Implementors
  117.  */
  118. enum {
  119.     ARM_IMPL_UNKNOWN = 0x00,
  120.     ARM_IMPL_ARM     = 0x41, /* 'A' */
  121.     ARM_IMPL_DEC     = 0x44, /* 'D' */
  122.     ARM_IMPL_Intel   = 0x69  /* 'i' */
  123. } ;
  124. /*
  125.  * CPUInformation
  126.  */
  127. typedef struct
  128. {
  129.     CPUArchitecture architecture ;
  130.     union
  131.     {
  132.         IntelCPUInformation m_x86 ;
  133.         ARMCPUInformation m_arm ;
  134.     } specific ;
  135. } CPUInformation ;
  136. extern void CPUIdentify(CPUInformation* pInfo) ;
  137. #ifdef __cplusplus
  138. } // extern "C" {}
  139. #endif
  140. #endif /* _CPUIDENT_H_ */