coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
early_init.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootblock_common.h>
6 
7 #define SERIAL_DEV PNP_DEV(0x2e, 0x01)
8 
10 {
11  /* Enable serial port */
12  ite_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
13 }
void ite_enable_serial(pnp_devfn_t dev, u16 iobase)
Definition: early_serial.c:61
void bootblock_mainboard_early_init(void)
Definition: early_init.c:11
#define SERIAL_DEV
Definition: early_init.c:7