mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 18:50:31 -04:00
Add Octeon class and CPU type
This commit is contained in:
parent
ae849c7c42
commit
d8a2d243bf
1 changed files with 3 additions and 1 deletions
|
|
@ -89,6 +89,7 @@
|
|||
__PMC_CPU(INTEL_SANDYBRIDGE, 0x8D, "Intel Sandy Bridge") \
|
||||
__PMC_CPU(INTEL_XSCALE, 0x100, "Intel XScale") \
|
||||
__PMC_CPU(MIPS_24K, 0x200, "MIPS 24K") \
|
||||
__PMC_CPU(MIPS_OCTEON, 0x201, "Cavium Octeon") \
|
||||
__PMC_CPU(PPC_7450, 0x300, "PowerPC MPC7450")
|
||||
|
||||
enum pmc_cputype {
|
||||
|
|
@ -116,7 +117,8 @@ enum pmc_cputype {
|
|||
__PMC_CLASS(UCF) /* Intel Uncore fixed function */ \
|
||||
__PMC_CLASS(UCP) /* Intel Uncore programmable */ \
|
||||
__PMC_CLASS(XSCALE) /* Intel XScale counters */ \
|
||||
__PMC_CLASS(MIPS24K) /* MIPS 24K */ \
|
||||
__PMC_CLASS(MIPS24K) /* MIPS 24K */ \
|
||||
__PMC_CLASS(OCTEON) /* Cavium Octeon */ \
|
||||
__PMC_CLASS(PPC7450) /* Motorola MPC7450 class */
|
||||
|
||||
enum pmc_class {
|
||||
|
|
|
|||
Loading…
Reference in a new issue