ppc_htab.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1.                  Information about /proc/ppc_htab
  2. =====================================================================
  3. This document and the related code was written by me (Cort Dougan), please
  4. email me (cort@fsmlabs.com) if you have questions, comments or corrections.
  5. Last Change: 2.16.98
  6. This entry in the proc directory is readable by all users but only
  7. writable by root.
  8. The ppc_htab interface is a user level way of accessing the
  9. performance monitoring registers as well as providing information
  10. about the PTE hash table.
  11. 1. Reading
  12.   Reading this file will give you information about the memory management
  13.   hash table that serves as an extended tlb for page translation on the
  14.   powerpc.  It will also give you information about performance measurement
  15.   specific to the cpu that you are using.
  16.   Explanation of the 604 Performance Monitoring Fields:
  17.     MMCR0 - the current value of the MMCR0 register
  18.     PMC1
  19.     PMC2 - the value of the performance counters and a
  20.            description of what events they are counting
  21.            which are based on MMCR0 bit settings.
  22.   Explanation of the PTE Hash Table fields:
  23.     Size - hash table size in Kb.
  24.     Buckets -  number of buckets in the table.
  25.     Address - the virtual kernel address of the hash table base.
  26.     Entries - the number of ptes that can be stored in the hash table.
  27.     User/Kernel - how many pte's are in use by the kernel or user at that time.
  28.     Overflows - How many of the entries are in their secondary hash location.
  29.     Percent full - ratio of free pte entries to in use entries.
  30.     Reloads - Count of how many hash table misses have occurred
  31.               that were fixed with a reload from the linux tables.
  32.               Should always be 0 on 603 based machines.
  33.     Non-error Misses - Count of how many hash table misses have occurred
  34.               that were completed with the creation of a pte in the linux
  35.               tables with a call to do_page_fault().
  36.     Error Misses - Number of misses due to errors such as bad address
  37.               and permission violations.  This includes kernel access of
  38.               bad user addresses that are fixed up by the trap handler.
  39.   Note that calculation of the data displayed from /proc/ppc_htab takes
  40.   a long time and spends a great deal of time in the kernel.  It would
  41.   be quite hard on performance to read this file constantly.  In time
  42.   there may be a counter in the kernel that allows successive reads from
  43.   this file only after a given amount of time has passed to reduce the
  44.   possibility of a user slowing the system by reading this file.
  45. 2. Writing
  46.   Writing to the ppc_htab allows you to change the characteristics of
  47.   the powerpc PTE hash table and setup performance monitoring.
  48.   Resizing the PTE hash table is not enabled right now due to many
  49.   complications with moving the hash table, rehashing the entries
  50.   and many many SMP issues that would have to be dealt with.
  51.   Write options to ppc_htab:
  52.   
  53.    - To set the size of the hash table to 64Kb:
  54.       echo 'size 64' > /proc/ppc_htab
  55.      The size must be a multiple of 64 and must be greater than or equal to
  56.      64.
  57.    - To turn off performance monitoring:
  58.       echo 'off' > /proc/ppc_htab
  59.    - To reset the counters without changing what they're counting:
  60.       echo 'reset' > /proc/ppc_htab
  61.      Note that counting will continue after the reset if it is enabled.
  62.    - To count only events in user mode or only in kernel mode:
  63.       echo 'user' > /proc/ppc_htab
  64.        ...or...
  65.       echo 'kernel' > /proc/ppc_htab
  66.      Note that these two options are exclusive of one another and the
  67.      lack of either of these options counts user and kernel.
  68.      Using 'reset' and 'off' reset these flags.
  69.    - The 604 has 2 performance counters which can each count events from
  70.      a specific set of events.  These sets are disjoint so it is not
  71.      possible to count _any_ combination of 2 events.  One event can
  72.      be counted by PMC1 and one by PMC2.
  73.      To start counting a particular event use:
  74.       echo 'event' > /proc/ppc_htab
  75.      and choose from these events:
  76.      PMC1
  77.      ----
  78.       'ic miss' - instruction cache misses
  79.       'dtlb' - data tlb misses (not hash table misses)
  80.      PMC2
  81.      ----
  82.       'dc miss' - data cache misses
  83.       'itlb' - instruction tlb misses (not hash table misses)
  84.       'load miss time' - cycles to complete a load miss
  85. 3. Bugs
  86.   The PMC1 and PMC2 counters can overflow and give no indication of that
  87.   in /proc/ppc_htab.