diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-08-18 06:23:51 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-08-20 08:34:58 +0200 |
commit | b950bdd0fc247d0ab4aea88d46e8cced3eac949e (patch) | |
tree | daea275d042511774a6abd558d963e1199aedb65 /arch/powerpc/include/asm/cputable.h | |
parent | powerpc: Turn get/set_hard_smp_proccessor_id into inlines (diff) | |
download | linux-b950bdd0fc247d0ab4aea88d46e8cced3eac949e.tar.xz linux-b950bdd0fc247d0ab4aea88d46e8cced3eac949e.zip |
powerpc: Expose PMCs & cache topology in sysfs on 32-bit
The file arch/powerpc/kernel/sysfs.c is currently only compiled for
64-bit kernels. It contain code to register CPU sysdevs in sysfs and
add various properties such as cache topology and raw access by root
to performance monitor counters (PMCs). A lot of that can be re-used
as is on 32-bits.
This makes the file be built for both, with appropriate ifdef'ing
for the few bits that are really 64-bit specific, and adds some
support for the raw PMCs for 75x and 74xx processors.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/include/asm/cputable.h')
-rw-r--r-- | arch/powerpc/include/asm/cputable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/cputable.h b/arch/powerpc/include/asm/cputable.h index ef8a248dfd55..f99813f1ede6 100644 --- a/arch/powerpc/include/asm/cputable.h +++ b/arch/powerpc/include/asm/cputable.h @@ -62,6 +62,7 @@ enum powerpc_pmc_type { PPC_PMC_DEFAULT = 0, PPC_PMC_IBM = 1, PPC_PMC_PA6T = 2, + PPC_PMC_G4 = 3, }; struct pt_regs; |