coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
com_init.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #include <bootblock_common.h>
6 
7 #define SERIAL1_DEV PNP_DEV(0x2e, IT8613E_SP1)
8 #define GPIO_DEV PNP_DEV(0x2e, IT8613E_GPIO)
9 
11 {
12  ite_reg_write(GPIO_DEV, 0x2c, 0x41); /* disable K8 power seq */
13  ite_reg_write(GPIO_DEV, 0x2d, 0x02); /* PCICLK 25MHz */
14  ite_enable_serial(SERIAL1_DEV, CONFIG_TTYS0_BASE);
15 }
void bootblock_mainboard_early_init(void)
Definition: com_init.c:8
void ite_enable_serial(pnp_devfn_t dev, u16 iobase)
Definition: early_serial.c:61
void ite_reg_write(pnp_devfn_t dev, u8 reg, u8 value)
Definition: early_serial.c:41
#define GPIO_DEV
Definition: com_init.c:8
#define SERIAL1_DEV
Definition: com_init.c:7