Skip to content

Commit 46f75dc

Browse files
committed
AcpiAudioCompositor: add AACD device
Use ACPI0017 for now Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
1 parent 24a0eb3 commit 46f75dc

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

AcpiAudioCompositor/aacd.asl

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/** @file
2+
The definition block in ACPI table for ACPI0017 device under \\SB
3+
4+
Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
5+
This program and the accompanying materials
6+
are licensed and made available under the terms and conditions of the BSD License
7+
which accompanies this distribution. The full text of the license may be found at
8+
http://opensource.org/licenses/bsd-license.php
9+
10+
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12+
**/
13+
14+
DefinitionBlock (
15+
"",
16+
"SSDT",
17+
2,
18+
"INTEL ",
19+
"AACDTabl",
20+
0x1000
21+
)
22+
{
23+
External(\_SB, DeviceObj)
24+
25+
Scope (\_SB) {
26+
Device (AACD)
27+
{
28+
Name (_ADR, Zero) // _ADR: Address
29+
Name (_HID, "ACPI0017" /* ACPI Audio Compositor Device */) // _HID: Hardware ID
30+
Name (_CID, "ACPI0017" /* ACPI Audio Compositor Device */) // _CID: Compatible ID
31+
Name (_DDN, "ACPI Audio Compositor") // _DDN: DOS Device Name
32+
Name (_UID, One) // _UID: Unique ID
33+
34+
Method (_STA, 0, NotSerialized) // _STA: Status
35+
{
36+
Return (0x0F)
37+
}
38+
39+
Method (_DIS, 0, NotSerialized) // _DIS: Disable Device
40+
{
41+
}
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)