blob: 3c1ca43170253b670b6f31f6411dd6d6b8de135f [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#include <post.h>
#include <stdint.h>
#include <console/console.h>
#include <arch/io.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);
}