]> git.proxmox.com Git - mirror_qemu.git/blame - tests/ne2000-test.c
Revert "audio: fix pc speaker init"
[mirror_qemu.git] / tests / ne2000-test.c
CommitLineData
5297ea6f
AF
1/*
2 * QTest testcase for ne2000 NIC
3 *
4 * Copyright (c) 2014 SUSE LINUX Products GmbH
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
9
681c28a3 10#include "qemu/osdep.h"
5297ea6f 11#include "libqtest.h"
941e3317
EGE
12#include "libqos/qgraph.h"
13#include "libqos/pci.h"
5297ea6f 14
941e3317
EGE
15typedef struct QNe2k_pci QNe2k_pci;
16
17struct QNe2k_pci {
18 QOSGraphObject obj;
19 QPCIDevice dev;
20};
21
22static void *ne2k_pci_get_driver(void *obj, const char *interface)
5297ea6f 23{
941e3317
EGE
24 QNe2k_pci *ne2k_pci = obj;
25
26 if (!g_strcmp0(interface, "pci-device")) {
27 return &ne2k_pci->dev;
28 }
29
30 fprintf(stderr, "%s not present in ne2k_pci\n", interface);
31 g_assert_not_reached();
5297ea6f
AF
32}
33
941e3317 34static void *ne2k_pci_create(void *pci_bus, QGuestAllocator *alloc, void *addr)
5297ea6f 35{
941e3317
EGE
36 QNe2k_pci *ne2k_pci = g_new0(QNe2k_pci, 1);
37 QPCIBus *bus = pci_bus;
5297ea6f 38
941e3317
EGE
39 qpci_device_init(&ne2k_pci->dev, bus, addr);
40 ne2k_pci->obj.get_driver = ne2k_pci_get_driver;
5297ea6f 41
941e3317
EGE
42 return &ne2k_pci->obj;
43}
5297ea6f 44
941e3317
EGE
45static void ne2000_register_nodes(void)
46{
47 QOSGraphEdgeOptions opts = {
48 .extra_device_opts = "addr=04.0",
49 };
50 add_qpci_address(&opts, &(QPCIAddress) { .devfn = QPCI_DEVFN(4, 0) });
5297ea6f 51
941e3317
EGE
52 qos_node_create_driver("ne2k_pci", ne2k_pci_create);
53 qos_node_consumes("ne2k_pci", "pci-bus", &opts);
54 qos_node_produces("ne2k_pci", "pci-device");
5297ea6f 55}
941e3317
EGE
56
57libqos_init(ne2000_register_nodes);