mainboard/intel/avenuecity_crb: Update full IIO configuration
[coreboot2.git] / src / mainboard / ibm / sbp1 / acpi / platform.asl
blob76704fb7b99af02e68ebc4eac518fd6fdd969cce
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 /* Enable ACPI _SWS methods */
4 #include <soc/intel/common/acpi/acpi_wake_source.asl>
6 Name (_S0, Package () // mandatory system state
8         0x00, 0x00, 0x00, 0x00
9 })
11 Name (_S5, Package ()  // mandatory system state
13         0x07, 0x00, 0x00, 0x00
16 /* Port 80 POST */
17 OperationRegion (DBG0, SystemIO, 0x80, 0x02)
18 Field (DBG0, ByteAcc, Lock, Preserve)
20         IO80, 8,
21         IO81, 8
24 /* Virtual UART on 0x3f8 */
25 Scope(\_SB) {
26         Device(COM1) {
27                 Name(_HID, EisaId("PNP0501"))
28                 Name(_UID, 0x01)
29                 Name(_STA,0x0F)
30                 Name(_CRS, ResourceTemplate() {
31                         IO(Decode16, 0x03F8, 0x03F8, 0x00, 0x08)
32                         IRQNoFlags() { 4 }
33                 })
34         }
38  * The _PTS method (Prepare To Sleep) is called before the OS is
39  * entering a sleep state. The sleep state number is passed in Arg0
40  */
42 Method (_PTS, 1)
46 /* The _WAK method is called on system wakeup */
48 Method (_WAK, 1)
50         Return (Package (){ 0, 0 })