ssdt-mem.dsl 2.9 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41
/*
 * Memory hotplug ACPI DSDT static objects definitions
 *
 * Copyright ProfitBricks GmbH 2012
 * Copyright (C) 2013-2014 Red Hat Inc
 *
 * 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 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/>
 */

/* This file is the basis for the ssdt_mem[] variable in src/acpi.c.
 * It defines the contents of the memory device object.  At
 * runtime, a dynamically generated SSDT will contain one copy of this
 * AML snippet for every possible memory device in the system.  The
 * objects will be placed in the \_SB_ namespace.
 *
 * In addition to the aml code generated from this file, the
 * src/acpi.c file creates a MTFY method with an entry for each memdevice:
 *     Method(MTFY, 2) {
 *         If (LEqual(Arg0, 0x00)) { Notify(MP00, Arg1) }
 *         If (LEqual(Arg0, 0x01)) { Notify(MP01, Arg1) }
 *         ...
 *     }
 */
#include "hw/acpi/pc-hotplug.h"

ACPI_EXTRACT_ALL_CODE ssdm_mem_aml

DefinitionBlock ("ssdt-mem.aml", "SSDT", 0x02, "BXPC", "CSSDT", 0x1)
{

42 43 44 45
    External(\_SB.PCI0.MEMORY_HOTPLUG_DEVICE.MEMORY_SLOT_CRS_METHOD, MethodObj)
    External(\_SB.PCI0.MEMORY_HOTPLUG_DEVICE.MEMORY_SLOT_STATUS_METHOD, MethodObj)
    External(\_SB.PCI0.MEMORY_HOTPLUG_DEVICE.MEMORY_SLOT_OST_METHOD, MethodObj)
    External(\_SB.PCI0.MEMORY_HOTPLUG_DEVICE.MEMORY_SLOT_PROXIMITY_METHOD, MethodObj)
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

    Scope(\_SB) {
/*  v------------------ DO NOT EDIT ------------------v */
        ACPI_EXTRACT_DEVICE_START ssdt_mem_start
        ACPI_EXTRACT_DEVICE_END ssdt_mem_end
        ACPI_EXTRACT_DEVICE_STRING ssdt_mem_name
        Device(MPAA) {
            ACPI_EXTRACT_NAME_STRING ssdt_mem_id
            Name(_UID, "0xAA")
/*  ^------------------ DO NOT EDIT ------------------^
 * Don't change the above without also updating the C code.
 */
            Name(_HID, EISAID("PNP0C80"))

            Method(_CRS, 0) {
61
                Return(\_SB.PCI0.MEMORY_HOTPLUG_DEVICE.MEMORY_SLOT_CRS_METHOD(_UID))
62 63 64
            }

            Method(_STA, 0) {
65
                Return(\_SB.PCI0.MEMORY_HOTPLUG_DEVICE.MEMORY_SLOT_STATUS_METHOD(_UID))
66 67 68
            }

            Method(_PXM, 0) {
69
                Return(\_SB.PCI0.MEMORY_HOTPLUG_DEVICE.MEMORY_SLOT_PROXIMITY_METHOD(_UID))
70 71 72
            }

            Method(_OST, 3) {
73
                \_SB.PCI0.MEMORY_HOTPLUG_DEVICE.MEMORY_SLOT_OST_METHOD(_UID, Arg0, Arg1, Arg2)
74 75 76 77
            }
        }
    }
}