coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
bootblock.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootblock_common.h>
5 
6 #define SERIAL_DEV PNP_DEV(0x2e, SMSCSUPERIO_SP1)
7 
9 {
10  kbc1100_early_init(0x2e);
11  kbc1100_early_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
12 }
__weak void bootblock_mainboard_early_init(void)
Definition: bootblock.c:16
#define SERIAL_DEV
Definition: bootblock.c:6
void kbc1100_early_serial(pnp_devfn_t dev, u16 iobase)
Definition: early_init.c:24
void kbc1100_early_init(u16 port)
Definition: early_init.c:34