summaryrefslogtreecommitdiff
path: root/src/arch/x86/acpi/post.asl
blob: dbdc68110f86d02625be02eaf6e87878b22e9d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */

#if CONFIG(POST_IO)

/* POST code support, typically on port 80 */
OperationRegion (POST, SystemIO, CONFIG_POST_IO_PORT, 1)
Field (POST, ByteAcc, Lock, Preserve)
{
	DBG0, 8
}

#else

/* Dummy placeholder to avoid issues */
Name (DBG0, 0)

#endif