blob: 7dd7445fc9fae814b8990833976c65599e42f447 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
/*
* Onboard CPLD
*/
Scope (\_SB.PCI0.LPCB)
{
Device (CPLD) /* Onboard CPLD */
{
Name(_HID, EISAID("PNP0C01"))
Name(_CRS, ResourceTemplate()
{
/* Reserve 0x280 to 0x2BF for the CPLD */
FixedIO (0x0280, 0x40)
IRQNoFlags () {7}
})
}
}
|