cpu_aarch64.c 3.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * cpu_aarch64.c: CPU driver for AArch64 CPUs
 *
 *
 * 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
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *      Anup Patel <anup.patel@linaro.org>
 *      Pranavkumar Sawargaonkar <pranavkumar@linaro.org>
 */

#include <config.h>

#include "viralloc.h"
#include "cpu.h"
28
#include "virstring.h"
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

#define VIR_FROM_THIS VIR_FROM_CPU

static const virArch archs[] = { VIR_ARCH_AARCH64 };

static virCPUDataPtr
AArch64NodeData(virArch arch)
{
    virCPUDataPtr data;

    if (VIR_ALLOC(data) < 0)
        return NULL;

    data->arch = arch;

    return data;
}

static int
48 49 50 51 52 53
AArch64Decode(virCPUDefPtr cpu,
              const virCPUData *data ATTRIBUTE_UNUSED,
              const char **models ATTRIBUTE_UNUSED,
              unsigned int nmodels ATTRIBUTE_UNUSED,
              const char *preferred ATTRIBUTE_UNUSED,
              unsigned int flags)
54 55 56
{
    virCheckFlags(VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES, -1);

57 58 59 60
    if (cpu->model == NULL &&
        VIR_STRDUP(cpu->model, "host") < 0)
        return -1;

61 62 63 64 65 66 67 68 69
    return 0;
}

static void
AArch64DataFree(virCPUDataPtr data)
{
    VIR_FREE(data);
}

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
static int
AArch64Update(virCPUDefPtr guest,
              const virCPUDef *host)
{
    guest->match = VIR_CPU_MATCH_EXACT;
    virCPUDefFreeModel(guest);
    return virCPUDefCopyModel(guest, host, true);
}

static virCPUCompareResult
AArch64GuestData(virCPUDefPtr host ATTRIBUTE_UNUSED,
                 virCPUDefPtr guest ATTRIBUTE_UNUSED,
                 virCPUDataPtr *data ATTRIBUTE_UNUSED,
                 char **message ATTRIBUTE_UNUSED)
{
    return VIR_CPU_COMPARE_IDENTICAL;
}

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
static virCPUDefPtr
AArch64Baseline(virCPUDefPtr *cpus,
                unsigned int ncpus ATTRIBUTE_UNUSED,
                const char **models ATTRIBUTE_UNUSED,
                unsigned int nmodels ATTRIBUTE_UNUSED,
                unsigned int flags)
{
    virCPUDefPtr cpu = NULL;

    virCheckFlags(VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES, NULL);

    if (VIR_ALLOC(cpu) < 0 ||
        VIR_STRDUP(cpu->model, cpus[0]->model) < 0) {
        virCPUDefFree(cpu);
        return NULL;
    }

    cpu->type = VIR_CPU_TYPE_GUEST;
    cpu->match = VIR_CPU_MATCH_EXACT;

    return cpu;
}

111 112 113 114 115 116 117 118 119
struct cpuArchDriver cpuDriverAARCH64 = {
    .name = "aarch64",
    .arch = archs,
    .narch = ARRAY_CARDINALITY(archs),
    .compare = NULL,
    .decode = AArch64Decode,
    .encode = NULL,
    .free = AArch64DataFree,
    .nodeData = AArch64NodeData,
120
    .guestData = AArch64GuestData,
121
    .baseline = AArch64Baseline,
122
    .update = AArch64Update,
123 124
    .hasFeature = NULL,
};