Update SOC name in the form of HIPxx for Hisilicon Common Section, and add three modules that will be supported in the chip of HIP11.
Signed-off-by: Xiaofei Tan tanxiaofei@huawei.com --- non-standard-hisilicon.c | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/non-standard-hisilicon.c b/non-standard-hisilicon.c index 1f0ab6a..a40c994 100644 --- a/non-standard-hisilicon.c +++ b/non-standard-hisilicon.c @@ -174,9 +174,17 @@ static const struct db_table_descriptor hisi_common_section_tab = { #endif
static const char* soc_desc[] = { - "Kunpeng916", - "Kunpeng920", - "Kunpeng930", + "HIP06", + "HIP08", + "HIP09", + "HIP10", + "HIP10A", + "HIP10B", + "HIP10C", + "HIP10D", + "Reserved(8)", + "Reserved(9)", + "HIP11", };
static const char* module_name[] = { @@ -216,7 +224,10 @@ static const char* module_name[] = { "Tsensor", "ROH", "BTC", - "HILINK" + "HILINK", + "STARS", + "SDMA", + "UC", };
static const char* get_soc_desc(uint8_t soc_id)
Hi Tanxiaofei,
-----Original Message----- From: tanxiaofei tanxiaofei@huawei.com Sent: 31 October 2022 11:11 To: Shiju Jose shiju.jose@huawei.com; linuxarm@openeuler.org; Zhuangyuzeng (Yisen) yisen.zhuang@huawei.com Cc: tanxiaofei tanxiaofei@huawei.com Subject: [PATCH] rasdaemon: Update SOC name and add three modules for hisilicon common section
Update SOC name in the form of HIPxx for Hisilicon Common Section, and add three modules that will be supported in the chip of HIP11.
Signed-off-by: Xiaofei Tan tanxiaofei@huawei.com
non-standard-hisilicon.c | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/non-standard-hisilicon.c b/non-standard-hisilicon.c index 1f0ab6a..a40c994 100644 --- a/non-standard-hisilicon.c +++ b/non-standard-hisilicon.c @@ -174,9 +174,17 @@ static const struct db_table_descriptor hisi_common_section_tab = { #endif
static const char* soc_desc[] = {
- "Kunpeng916",
- "Kunpeng920",
- "Kunpeng930",
- "HIP06",
- "HIP08",
- "HIP09",
- "HIP10",
- "HIP10A",
- "HIP10B",
- "HIP10C",
- "HIP10D",
In the util/ras-mc-ctl.in "Kunpeng" is used. Do we expect to change to "HIP" in the ras-mc-ctl.in?
- "Reserved(8)",
- "Reserved(9)",
Why Reserved is added?
- "HIP11",
};
static const char* module_name[] = { @@ -216,7 +224,10 @@ static const char* module_name[] = { "Tsensor", "ROH", "BTC",
- "HILINK"
- "HILINK",
- "STARS",
- "SDMA",
- "UC",
};
static const char* get_soc_desc(uint8_t soc_id)
2.30.0
Thanks, Shiju