]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/QNCApic.asi
ArmPkg/CompilerIntrinsicsLib: Add uread, uwrite GCC assembly sources
[mirror_edk2.git] / QuarkPlatformPkg / Acpi / AcpiTables / Dsdt / QNCApic.asi
1 /** @file
2 QNC I/O Apic devices
3
4 Copyright (c) 2013-2015 Intel Corporation.
5
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef QNC_APIC_ASI
11 #define QNC_APIC_ASI
12
13 Device(APIC)
14 {
15 Name(_HID,EISAID("PNP0003")) // APIC resources
16
17 Name(CRS, ResourceTemplate()
18 {
19 Memory32Fixed(ReadOnly, 0, 0, FIX1) // IO APIC
20 }
21 )
22
23 Method (_CRS, 0, NotSerialized) {
24 CreateDWordField (CRS, ^FIX1._BAS, MBR0)
25 Store(\APCB, MBR0)
26 CreateDWordField (CRS, ^FIX1._LEN, MBR1)
27 Store(\APCS, MBR1)
28 Return (CRS)
29 }
30 }
31
32 #endif