This patch implements the infrastructure to dynamically add cpu model aliases. Signed-off-by: Michael Mueller <mimu@xxxxxxxxxxxxxxxxxx> Reviewed-by: Cornelia Huck <cornelia.huck@xxxxxxxxxx> --- target-s390x/cpu-models.c | 64 +++++++++++++++++++++++++++++++++++++++++++++++ target-s390x/cpu-models.h | 12 +++++++++ 2 files changed, 76 insertions(+) diff --git a/target-s390x/cpu-models.c b/target-s390x/cpu-models.c index e437bd0..25147a4 100644 --- a/target-s390x/cpu-models.c +++ b/target-s390x/cpu-models.c @@ -86,6 +86,9 @@ S390_PROC_DEF("2827-ga1", CPU_S390_2827_GA1, "IBM zEnterprise EC12 GA1") S390_PROC_DEF("2827-ga2", CPU_S390_2827_GA2, "IBM zEnterprise EC12 GA2") S390_PROC_DEF("2828-ga1", CPU_S390_2828_GA1, "IBM zEnterprise BC12 GA1") +/* S390 CPU aliases can be added dynamically to this list */ +GSList *s390_cpu_aliases; + static inline unsigned long bit_in_word(unsigned int nr) { return 1ul << (__WORDSIZE - 1 - (nr % __WORDSIZE)); @@ -103,3 +106,64 @@ static inline int test_facility(unsigned long nr, unsigned long *fac_list) return (*ptr & bit_in_word(nr)) != 0; } + +static gint s390_cpu_compare_class_name(gconstpointer a, gconstpointer b) +{ + ObjectClass *oc = (ObjectClass *)a; + const char *name = b; + + if (strncasecmp(name, object_class_get_name(oc), strlen(name)) == 0 && + strcmp(object_class_get_name(oc) + strlen(name), + "-" TYPE_S390_CPU) == 0) { + return 0; + } + + return -1; +} + +ObjectClass *s390_cpu_class_by_name(const char *name) +{ + GSList *list, *item; + ObjectClass *ret = NULL; + S390CPUAlias *alias; + + for (item = s390_cpu_aliases; item != NULL; item = item->next) { + alias = (S390CPUAlias *) item->data; + if (strcmp(alias->name, name) == 0) { + return s390_cpu_class_by_name(alias->model); + } + } + list = object_class_get_list(TYPE_S390_CPU, false); + item = g_slist_find_custom(list, name, s390_cpu_compare_class_name); + if (item) { + ret = OBJECT_CLASS(item->data); + } + g_slist_free(list); + + return ret; +} + +/* define a new s390 cpu alias */ +int set_s390_cpu_alias(const char *name, const char *model) +{ + S390CPUAlias *alias; + + if (!name || !model) { + return -EINVAL; + } + if (!g_strcmp0(name, model)) { + return -EINVAL; + } + if (!s390_cpu_class_by_name(model)) { + return -EINVAL; + } + alias = g_try_malloc0(sizeof(S390CPUAlias)); + if (!alias) { + return -ENOMEM; + } + alias->name = g_strdup(name); + alias->model = g_strdup(model); + s390_cpu_aliases = g_slist_append(s390_cpu_aliases, alias); + + return 0; +} diff --git a/target-s390x/cpu-models.h b/target-s390x/cpu-models.h index 6f9a1a1..f5c8112 100644 --- a/target-s390x/cpu-models.h +++ b/target-s390x/cpu-models.h @@ -43,6 +43,18 @@ #define cpu_class(x) (((x) >> 20) & 0x3) #define cpu_generation(x) (((x) >> 24) & 0xff) +ObjectClass *s390_cpu_class_by_name(const char *name); +int set_s390_cpu_alias(const char *name, const char *model); + +/* + * S390 cpu aliases will be added dynamically + */ +typedef struct S390CPUAlias { + char *name; + char *model; +} S390CPUAlias; +extern GSList *s390_cpu_aliases; + /* * bits 0-7 : CMOS generation * bits 8-9 : reserved -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html