tests/avocado: sbsa-ref: add OpenBSD tests for misc 'max' setup
[qemu/armbru.git] / tests / qtest / libqos / arm-virt-machine.c
blob4e87405b58f2b2e77bc2ecb938ac49cbe593cc03
1 /*
2 * libqos driver framework
4 * Copyright (c) 2018 Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2.1 as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>
19 #include "qemu/osdep.h"
20 #include "../libqtest.h"
21 #include "qemu/module.h"
22 #include "libqos-malloc.h"
23 #include "qgraph.h"
24 #include "virtio-mmio.h"
25 #include "generic-pcihost.h"
26 #include "hw/pci/pci_regs.h"
28 #define ARM_PAGE_SIZE 4096
29 #define VIRTIO_MMIO_BASE_ADDR 0x0A003E00
30 #define ARM_VIRT_RAM_ADDR 0x40000000
31 #define ARM_VIRT_RAM_SIZE 0x20000000
32 #define VIRTIO_MMIO_SIZE 0x00000200
34 typedef struct QVirtMachine QVirtMachine;
36 struct QVirtMachine {
37 QOSGraphObject obj;
38 QGuestAllocator alloc;
39 QVirtioMMIODevice virtio_mmio;
40 QGenericPCIHost bridge;
43 static void virt_destructor(QOSGraphObject *obj)
45 QVirtMachine *machine = (QVirtMachine *) obj;
46 alloc_destroy(&machine->alloc);
49 static void *virt_get_driver(void *object, const char *interface)
51 QVirtMachine *machine = object;
52 if (!g_strcmp0(interface, "memory")) {
53 return &machine->alloc;
56 fprintf(stderr, "%s not present in arm/virtio\n", interface);
57 g_assert_not_reached();
60 static QOSGraphObject *virt_get_device(void *obj, const char *device)
62 QVirtMachine *machine = obj;
63 if (!g_strcmp0(device, "generic-pcihost")) {
64 return &machine->bridge.obj;
65 } else if (!g_strcmp0(device, "virtio-mmio")) {
66 return &machine->virtio_mmio.obj;
69 fprintf(stderr, "%s not present in arm/virt\n", device);
70 g_assert_not_reached();
73 static void *qos_create_machine_arm_virt(QTestState *qts)
75 QVirtMachine *machine = g_new0(QVirtMachine, 1);
77 alloc_init(&machine->alloc, 0,
78 ARM_VIRT_RAM_ADDR,
79 ARM_VIRT_RAM_ADDR + ARM_VIRT_RAM_SIZE,
80 ARM_PAGE_SIZE);
81 qvirtio_mmio_init_device(&machine->virtio_mmio, qts, VIRTIO_MMIO_BASE_ADDR,
82 VIRTIO_MMIO_SIZE);
84 qos_create_generic_pcihost(&machine->bridge, qts, &machine->alloc);
86 machine->obj.get_device = virt_get_device;
87 machine->obj.get_driver = virt_get_driver;
88 machine->obj.destructor = virt_destructor;
89 return machine;
92 static void virt_machine_register_nodes(void)
94 qos_node_create_machine("arm/virt", qos_create_machine_arm_virt);
95 qos_node_contains("arm/virt", "virtio-mmio", NULL);
97 qos_node_create_machine_args("aarch64/virt", qos_create_machine_arm_virt,
98 " -cpu max");
99 qos_node_contains("aarch64/virt", "generic-pcihost", NULL);
102 libqos_init(virt_machine_register_nodes);