[Skiboot] [PATCH 16/22] external/xscom-utils: Add P9P chip info
Vasant Hegde
hegdevasant at linux.vnet.ibm.com
Fri Jun 25 16:19:31 AEST 2021
Signed-off-by: Vasant Hegde <hegdevasant at linux.vnet.ibm.com>
---
external/xscom-utils/adu_scoms.py | 2 ++
external/xscom-utils/getscom.c | 3 +++
2 files changed, 5 insertions(+)
diff --git a/external/xscom-utils/adu_scoms.py b/external/xscom-utils/adu_scoms.py
index 6273eadb1..d651b7e9f 100755
--- a/external/xscom-utils/adu_scoms.py
+++ b/external/xscom-utils/adu_scoms.py
@@ -174,6 +174,8 @@ class GetSCom(object):
name = "P9 (Nimbus) processor"
elif id == 0xd4:
name = "P9 (Cumulus) processor"
+ elif id == 0xd9:
+ name = "P9P (Axone) processor"
elif id == 0xe9:
name = "Centaur memory buffer"
else:
diff --git a/external/xscom-utils/getscom.c b/external/xscom-utils/getscom.c
index bb28139d8..c18a04972 100644
--- a/external/xscom-utils/getscom.c
+++ b/external/xscom-utils/getscom.c
@@ -53,6 +53,9 @@ static void print_chip_info(uint32_t chip_id)
case 0xd4:
name = "P9 (Cumulus) processor";
break;
+ case 0xd9:
+ name = "P9P (Axone) processor";
+ break;
case 0xe9:
name = "Centaur memory buffer";
break;
--
2.31.1
More information about the Skiboot
mailing list