c84d609f64
Resolves: https://issues.redhat.com/browse/RHEL-24738 Resolves: https://issues.redhat.com/browse/RHEL-44824 Signed-off-by: Pingfan Liu <piliu@redhat.com>
45 lines
1.4 KiB
Diff
45 lines
1.4 KiB
Diff
From 50617b9a0e197a5261b3824d6e6309c034e99134 Mon Sep 17 00:00:00 2001
|
|
From: Kajol Jain <kjain@linux.ibm.com>
|
|
Date: Fri, 12 Apr 2024 04:46:59 -0400
|
|
Subject: [PATCH 02/32] numatop/powerpc: Add Power11 support
|
|
|
|
Power11 is PowerISA v3.1 compliant processor and support Power10 events.
|
|
So using Power10 events to enable numatop in Power11 platform and to
|
|
count the per-process/per-thread memory accesses and CPU usage.
|
|
|
|
Signed-off-by: Kajol Jain <kjain@linux.ibm.com>
|
|
---
|
|
numatop.8 | 2 +-
|
|
powerpc/plat.c | 5 +++++
|
|
2 files changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/numatop.8 b/numatop.8
|
|
index 7237093..b09862e 100644
|
|
--- a/numatop.8
|
|
+++ b/numatop.8
|
|
@@ -500,4 +500,4 @@ in 3.9. The following steps show how to get and apply the patch set.
|
|
\fBnumatop\fP supports the Intel Xeon processors: 5500-series, 6500/7500-series,
|
|
5600 series, E7-x8xx-series, and E5-16xx/24xx/26xx/46xx-series.
|
|
\fBNote\fP: CPU microcode version 0x618 or 0x70c or later is required on
|
|
-E5-16xx/24xx/26xx/46xx-series. It also supports IBM Power8, Power9 and Power10 processors.
|
|
+E5-16xx/24xx/26xx/46xx-series. It also supports IBM Power8, Power9, Power10 and Power11 processors.
|
|
diff --git a/powerpc/plat.c b/powerpc/plat.c
|
|
index bed27d5..0ea262b 100644
|
|
--- a/powerpc/plat.c
|
|
+++ b/powerpc/plat.c
|
|
@@ -93,6 +93,11 @@ plat_detect(void)
|
|
s_cpu_type = CPU_POWER10;
|
|
ret = 0;
|
|
break;
|
|
+
|
|
+ case 0x82:
|
|
+ s_cpu_type = CPU_POWER10;
|
|
+ ret = 0;
|
|
+ break;
|
|
}
|
|
|
|
return ret;
|
|
--
|
|
2.41.0
|
|
|