drivers/mipi: Add support for KD_KD110N11_51IE panel
[coreboot2.git] / src / mainboard / google / stout / acpi / superio.asl
blob32ed70a9788b84eb16d0bd7adb27491f34cd287d
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 /* mainboard configuration */
4 #include "../ec.h"
6 #define SIO_EC_ENABLE_PS2K       // Enable PS/2 Keyboard
8 /* SIO_EC_ENABLE_PS2M is not defined in favor of custom ASL below */
10 /* ACPI code for EC SuperIO functions */
11 #include <ec/quanta/it8518/acpi/superio.asl>
13 /* Use multitouch trackpad */
14 Scope (\_SB.PCI0.LPCB.SIO)
16         Device (PS2M)
17         {
18                 Name (_HID, EISAID("LEN2011"))
19                 Name (_CID, EISAID("PNP0F13"))
21                 Method (_STA, 0, NotSerialized)
22                 {
23                         Return (0x0F)
24                 }
26                 Name (_CRS, ResourceTemplate()
27                 {
28                         FixedIO (0x60, 0x01)
29                         FixedIO (0x64, 0x01)
30                         IRQNoFlags () {12}
31                 })
32         }