summaryrefslogtreecommitdiffstats
path: root/src/mainboard/facebook/fbg1701/acpi/mainboard.asl
blob: 542b671d0e2927c4b53a1c5cacfe5d74661f9d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-only */

/*
 * 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}
		})
	}
}