pmc.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.  * pmc.h
  3.  * Copyright (C) 2001  Dave Engebretsen & Mike Corrigan IBM Corporation.
  4.  *
  5.  * The PPC64 PMC subsystem encompases both the hardware PMC registers and 
  6.  * a set of software event counters.  An interface is provided via the
  7.  * proc filesystem which can be used to access this subsystem.
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  * 
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  * 
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  22.  */
  23. /* Start Change Log
  24.  * 2001/06/05 : engebret : Created.
  25.  * End Change Log 
  26.  */
  27. #ifndef _PPC64_TYPES_H
  28. #include        <asm/types.h>
  29. #endif
  30. #ifndef _PMC_H
  31. #define _PMC_H
  32. #define STAB_ENTRY_MAX 64
  33. struct _pmc_hw
  34. {
  35. u64 mmcr0; 
  36. u64 mmcr1; 
  37. u64 mmcra; 
  38. u64 pmc1; 
  39. u64 pmc2; 
  40. u64 pmc3; 
  41. u64 pmc4; 
  42. u64 pmc5; 
  43. u64 pmc6; 
  44. u64 pmc7; 
  45. u64 pmc8; 
  46. };
  47. struct _pmc_sw
  48. {
  49. u64 stab_faults;           /* Count of faults on the stab      */
  50. u64 stab_capacity_castouts;/* Count of castouts from the stab  */
  51. u64 stab_invalidations;    /* Count of invalidations from the  */
  52.                                    /*   stab, not including castouts   */
  53. u64 stab_entry_use[STAB_ENTRY_MAX]; 
  54. u64 htab_primary_overflows;
  55. u64 htab_capacity_castouts;
  56. u64 htab_read_to_write_fault;
  57. };
  58. #define PMC_HW_TEXT_ENTRY_COUNT (sizeof(struct _pmc_hw) / sizeof(u64))
  59. #define PMC_SW_TEXT_ENTRY_COUNT (sizeof(struct _pmc_sw) / sizeof(u64))
  60. #define PMC_TEXT_ENTRY_SIZE  64
  61. struct _pmc_sw_text {
  62. char buffer[PMC_SW_TEXT_ENTRY_COUNT * PMC_TEXT_ENTRY_SIZE];
  63. };
  64. struct _pmc_hw_text {
  65. char buffer[PMC_HW_TEXT_ENTRY_COUNT * PMC_TEXT_ENTRY_SIZE];
  66. };
  67. extern struct _pmc_sw pmc_sw_system;
  68. extern struct _pmc_sw pmc_sw_cpu[];
  69. extern struct _pmc_sw_text pmc_sw_text;
  70. extern struct _pmc_hw_text pmc_hw_text;
  71. extern char *ppc64_pmc_stab(int file);
  72. extern char *ppc64_pmc_htab(int file);
  73. extern char *ppc64_pmc_hw(int file);
  74. void *btmalloc(unsigned long size);
  75. void btfree(void *addr);
  76. #if 1
  77. #define PMC_SW_PROCESSOR(F)      pmc_sw_cpu[smp_processor_id()].F++
  78. #define PMC_SW_PROCESSOR_A(F, E) (pmc_sw_cpu[smp_processor_id()].F[(E)])++
  79. #define PMC_SW_SYSTEM(F)         pmc_sw_system.F++
  80. #else
  81. #define PMC_SW_PROCESSOR(F)   do {;} while (0)
  82. #define PMC_SW_PROCESSOR_A(F) do {;} while (0)
  83. #define PMC_SW_SYSTEM(F)      do {;} while (0)
  84. #endif
  85. #define PMC_CONTROL_CPI 1
  86. #define PMC_CONTROL_TLB 2
  87. /* To find an entry in the bolted page-table-directory */
  88. #define pgd_offset_b(address) (bolted_pgd + pgd_index(address))
  89. #define BTMALLOC_START 0xB000000000000000
  90. #define BTMALLOC_END   0xB0000000ffffffff /* 4 GB Max-more or less arbitrary */
  91. #endif /* _PMC_H */