summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/post.c
blob: 908cc3bd36ae348a77b27006d95607508b0f2de6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */

#include <arch/io.h>
#include <console/console.h>
#include <post.h>
#include <stdint.h>

void arch_post_code(uint8_t value)
{
	if (CONFIG(POST_IO))
		outb(value, CONFIG_POST_IO_PORT);

	if (CONFIG(CMOS_POST) && !ENV_SMM)
		cmos_post_code(value);
}