aboutsummaryrefslogtreecommitdiff
path: root/hw/display/acpi-vga.c
blob: f0e9ef1fcf8ee6a46320fe7bae0b60a3978bb593 (plain)
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
#include "qemu/osdep.h"
#include "hw/acpi/acpi_aml_interface.h"
#include "hw/pci/pci.h"
#include "vga_int.h"

void build_vga_aml(AcpiDevAmlIf *adev, Aml *scope)
{
    int s3d = 0;
    Aml *method;

    if (object_dynamic_cast(OBJECT(adev), "qxl-vga")) {
        s3d = 3;
    }

    method = aml_method("_S1D", 0, AML_NOTSERIALIZED);
    aml_append(method, aml_return(aml_int(0)));
    aml_append(scope, method);

    method = aml_method("_S2D", 0, AML_NOTSERIALIZED);
    aml_append(method, aml_return(aml_int(0)));
    aml_append(scope, method);

    method = aml_method("_S3D", 0, AML_NOTSERIALIZED);
    aml_append(method, aml_return(aml_int(s3d)));
    aml_append(scope, method);
}