2012-07-12 15:28:17 +00:00
|
|
|
/*
|
|
|
|
* cpu_arm.c: CPU driver for arm CPUs
|
|
|
|
*
|
maint: avoid 'const fooPtr' in cpu files
'const fooPtr' is the same as 'foo * const' (the pointer won't
change, but it's contents can). But in general, if an interface
is trying to be const-correct, it should be using 'const foo *'
(the pointer is to data that can't be changed).
Fix up offenders in src/cpu.
* src/cpu/cpu.h (cpuArchDecode, cpuArchEncode, cpuArchUpdate)
(cpuArchHasFeature, cpuDecode, cpuEncode, cpuUpdate)
(cpuHasFeature): Use intended type.
* src/conf/cpu_conf.h (virCPUDefCopyModel, virCPUDefCopy):
Likewise.
(virCPUDefParseXML): Drop const.
* src/cpu/cpu.c (cpuDecode, cpuEncode, cpuUpdate, cpuHasFeature):
Fix fallout.
* src/cpu/cpu_x86.c (x86ModelFromCPU, x86ModelSubtractCPU)
(x86DecodeCPUData, x86EncodePolicy, x86Encode, x86UpdateCustom)
(x86UpdateHostModel, x86Update, x86HasFeature): Likewise.
* src/cpu/cpu_s390.c (s390Decode): Likewise.
* src/cpu/cpu_arm.c (ArmDecode): Likewise.
* src/cpu/cpu_powerpc.c (ppcModelFromCPU, ppcCompute, ppcDecode)
(ppcUpdate): Likewise.
* src/conf/cpu_conf.c (virCPUDefCopyModel, virCPUDefCopy)
(virCPUDefParseXML): Likewise.
Signed-off-by: Eric Blake <eblake@redhat.com>
2013-10-05 20:01:02 +00:00
|
|
|
* Copyright (C) 2013 Red Hat, Inc.
|
2012-07-12 15:28:17 +00:00
|
|
|
* Copyright (C) Canonical Ltd. 2012
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2012-07-12 15:28:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2012-12-12 18:06:53 +00:00
|
|
|
#include "viralloc.h"
|
2012-07-12 15:28:17 +00:00
|
|
|
#include "cpu.h"
|
2019-10-11 08:05:49 +00:00
|
|
|
#include "cpu_map.h"
|
2014-02-26 16:40:12 +00:00
|
|
|
#include "virstring.h"
|
2019-10-11 08:05:49 +00:00
|
|
|
#include "virxml.h"
|
2012-07-12 15:28:17 +00:00
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_CPU
|
|
|
|
|
2016-06-24 16:21:50 +00:00
|
|
|
static const virArch archs[] = {
|
|
|
|
VIR_ARCH_ARMV6L,
|
|
|
|
VIR_ARCH_ARMV7B,
|
|
|
|
VIR_ARCH_ARMV7L,
|
|
|
|
VIR_ARCH_AARCH64,
|
|
|
|
};
|
2012-07-12 15:28:17 +00:00
|
|
|
|
2019-10-11 08:05:49 +00:00
|
|
|
typedef struct _virCPUarmFeature virCPUarmFeature;
|
|
|
|
typedef virCPUarmFeature *virCPUarmFeaturePtr;
|
|
|
|
struct _virCPUarmFeature {
|
|
|
|
char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
static virCPUarmFeaturePtr
|
|
|
|
virCPUarmFeatureNew(void)
|
|
|
|
{
|
|
|
|
return g_new0(virCPUarmFeature, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
virCPUarmFeatureFree(virCPUarmFeaturePtr feature)
|
|
|
|
{
|
|
|
|
if (!feature)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_free(feature->name);
|
|
|
|
|
|
|
|
g_free(feature);
|
|
|
|
}
|
|
|
|
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virCPUarmFeature, virCPUarmFeatureFree);
|
|
|
|
|
|
|
|
typedef struct _virCPUarmMap virCPUarmMap;
|
|
|
|
typedef virCPUarmMap *virCPUarmMapPtr;
|
|
|
|
struct _virCPUarmMap {
|
|
|
|
GPtrArray *features;
|
|
|
|
};
|
|
|
|
|
|
|
|
static virCPUarmMapPtr
|
|
|
|
virCPUarmMapNew(void)
|
|
|
|
{
|
|
|
|
virCPUarmMapPtr map;
|
|
|
|
|
|
|
|
map = g_new0(virCPUarmMap, 1);
|
|
|
|
|
|
|
|
map->features = g_ptr_array_new();
|
|
|
|
g_ptr_array_set_free_func(map->features,
|
|
|
|
(GDestroyNotify) virCPUarmFeatureFree);
|
|
|
|
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
virCPUarmMapFree(virCPUarmMapPtr map)
|
|
|
|
{
|
|
|
|
if (!map)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_ptr_array_free(map->features, TRUE);
|
|
|
|
|
|
|
|
g_free(map);
|
|
|
|
}
|
|
|
|
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virCPUarmMap, virCPUarmMapFree);
|
|
|
|
|
|
|
|
static virCPUarmFeaturePtr
|
|
|
|
virCPUarmMapFeatureFind(virCPUarmMapPtr map,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < map->features->len; i++) {
|
|
|
|
virCPUarmFeaturePtr feature = g_ptr_array_index(map->features, i);
|
|
|
|
|
|
|
|
if (STREQ(feature->name, name))
|
|
|
|
return feature;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
virCPUarmMapFeatureParse(xmlXPathContextPtr ctxt G_GNUC_UNUSED,
|
|
|
|
const char *name,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
g_autoptr(virCPUarmFeature) feature = NULL;
|
|
|
|
virCPUarmMapPtr map = data;
|
|
|
|
|
|
|
|
if (virCPUarmMapFeatureFind(map, name)) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("CPU feature %s already defined"), name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
feature = virCPUarmFeatureNew();
|
|
|
|
feature->name = g_strdup(name);
|
|
|
|
|
|
|
|
g_ptr_array_add(map->features, g_steal_pointer(&feature));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static virCPUarmMapPtr
|
|
|
|
virCPUarmLoadMap(void)
|
|
|
|
{
|
|
|
|
g_autoptr(virCPUarmMap) map = NULL;
|
|
|
|
|
|
|
|
map = virCPUarmMapNew();
|
|
|
|
|
|
|
|
if (cpuMapLoad("arm", NULL, virCPUarmMapFeatureParse, NULL, map) < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return g_steal_pointer(&map);
|
|
|
|
}
|
|
|
|
|
|
|
|
static virCPUarmMapPtr cpuMap;
|
|
|
|
|
|
|
|
int virCPUarmDriverOnceInit(void);
|
|
|
|
VIR_ONCE_GLOBAL_INIT(virCPUarmDriver);
|
|
|
|
|
|
|
|
int
|
|
|
|
virCPUarmDriverOnceInit(void)
|
|
|
|
{
|
|
|
|
if (!(cpuMap = virCPUarmLoadMap()))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static virCPUarmMapPtr
|
|
|
|
virCPUarmGetMap(void)
|
|
|
|
{
|
|
|
|
if (virCPUarmDriverInitialize() < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return cpuMap;
|
|
|
|
}
|
2016-06-23 13:27:07 +00:00
|
|
|
|
2014-02-26 16:40:12 +00:00
|
|
|
static int
|
2016-06-23 13:27:07 +00:00
|
|
|
virCPUarmUpdate(virCPUDefPtr guest,
|
|
|
|
const virCPUDef *host)
|
2014-02-26 16:40:12 +00:00
|
|
|
{
|
2016-06-23 13:27:07 +00:00
|
|
|
int ret = -1;
|
|
|
|
virCPUDefPtr updated = NULL;
|
|
|
|
|
|
|
|
if (guest->mode != VIR_CPU_MODE_HOST_MODEL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!host) {
|
|
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
|
|
_("unknown host CPU model"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(updated = virCPUDefCopyWithoutModel(guest)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
updated->mode = VIR_CPU_MODE_CUSTOM;
|
|
|
|
if (virCPUDefCopyModel(updated, host, true) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2016-11-10 09:26:03 +00:00
|
|
|
virCPUDefStealModel(guest, updated, false);
|
2016-06-23 13:27:07 +00:00
|
|
|
guest->mode = VIR_CPU_MODE_CUSTOM;
|
2014-02-26 16:40:12 +00:00
|
|
|
guest->match = VIR_CPU_MATCH_EXACT;
|
2016-06-23 13:27:07 +00:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virCPUDefFree(updated);
|
|
|
|
return ret;
|
2014-02-26 16:40:12 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 13:27:07 +00:00
|
|
|
|
2014-03-03 13:41:03 +00:00
|
|
|
static virCPUDefPtr
|
2018-05-15 08:50:32 +00:00
|
|
|
virCPUarmBaseline(virCPUDefPtr *cpus,
|
2019-10-14 12:45:33 +00:00
|
|
|
unsigned int ncpus G_GNUC_UNUSED,
|
|
|
|
virDomainCapsCPUModelsPtr models G_GNUC_UNUSED,
|
|
|
|
const char **features G_GNUC_UNUSED,
|
|
|
|
bool migratable G_GNUC_UNUSED)
|
2014-03-03 13:41:03 +00:00
|
|
|
{
|
|
|
|
virCPUDefPtr cpu = NULL;
|
|
|
|
|
2019-11-29 11:00:26 +00:00
|
|
|
cpu = virCPUDefNew();
|
2014-03-03 13:41:03 +00:00
|
|
|
|
2019-10-20 11:49:46 +00:00
|
|
|
cpu->model = g_strdup(cpus[0]->model);
|
|
|
|
|
2014-03-03 13:41:03 +00:00
|
|
|
cpu->type = VIR_CPU_TYPE_GUEST;
|
|
|
|
cpu->match = VIR_CPU_MATCH_EXACT;
|
|
|
|
|
|
|
|
return cpu;
|
|
|
|
}
|
|
|
|
|
2014-05-07 16:38:10 +00:00
|
|
|
static virCPUCompareResult
|
2019-10-14 12:45:33 +00:00
|
|
|
virCPUarmCompare(virCPUDefPtr host G_GNUC_UNUSED,
|
|
|
|
virCPUDefPtr cpu G_GNUC_UNUSED,
|
|
|
|
bool failMessages G_GNUC_UNUSED)
|
2014-05-07 16:38:10 +00:00
|
|
|
{
|
|
|
|
return VIR_CPU_COMPARE_IDENTICAL;
|
|
|
|
}
|
|
|
|
|
2019-10-11 08:05:49 +00:00
|
|
|
static int
|
|
|
|
virCPUarmValidateFeatures(virCPUDefPtr cpu)
|
|
|
|
{
|
|
|
|
virCPUarmMapPtr map;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (!(map = virCPUarmGetMap()))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for (i = 0; i < cpu->nfeatures; i++) {
|
|
|
|
virCPUFeatureDefPtr feature = &cpu->features[i];
|
|
|
|
|
|
|
|
if (!virCPUarmMapFeatureFind(map, feature->name)) {
|
|
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
|
|
_("unknown CPU feature: %s"),
|
|
|
|
feature->name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-12 15:28:17 +00:00
|
|
|
struct cpuArchDriver cpuDriverArm = {
|
|
|
|
.name = "arm",
|
|
|
|
.arch = archs,
|
2019-10-15 11:55:26 +00:00
|
|
|
.narch = G_N_ELEMENTS(archs),
|
2016-08-09 11:26:53 +00:00
|
|
|
.compare = virCPUarmCompare,
|
2016-06-21 14:02:07 +00:00
|
|
|
.decode = NULL,
|
2012-07-12 15:28:17 +00:00
|
|
|
.encode = NULL,
|
2018-05-15 08:50:32 +00:00
|
|
|
.baseline = virCPUarmBaseline,
|
2016-06-23 13:27:07 +00:00
|
|
|
.update = virCPUarmUpdate,
|
2019-10-11 08:05:49 +00:00
|
|
|
.validateFeatures = virCPUarmValidateFeatures,
|
2012-07-12 15:28:17 +00:00
|
|
|
};
|