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 <device/pnp_ops.h>
7 
8 #define GLOBAL_DEV PNP_DEV(0x4e, 0)
9 #define SERIAL_DEV PNP_DEV(0x4e, NCT6779D_SP1)
10 #define ACPI_DEV PNP_DEV(0x4e, NCT6779D_ACPI)
11 
13 {
15 
16  /* Select SIO pin mux states */
17  pnp_write_config(GLOBAL_DEV, 0x1a, 0x30);
18  pnp_write_config(GLOBAL_DEV, 0x1b, 0x70);
19  pnp_write_config(GLOBAL_DEV, 0x1c, 0x08);
20  pnp_write_config(GLOBAL_DEV, 0x1d, 0x00);
21  pnp_write_config(GLOBAL_DEV, 0x22, 0xff);
22  pnp_write_config(GLOBAL_DEV, 0x24, 0x04);
23  pnp_write_config(GLOBAL_DEV, 0x2a, 0x08);
24  pnp_write_config(GLOBAL_DEV, 0x2c, 0x00);
25 
26  /* Enable keyboard wakeup, 3VSBSW# is not connected */
28  pnp_write_config(ACPI_DEV, 0xe4, 0x08);
29 
31 
32  nuvoton_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
33 }
void mainboard_config_superio(void)
Definition: bootblock.c:47
#define ACPI_DEV
Definition: bootblock.c:10
#define SERIAL_DEV
Definition: bootblock.c:9
#define GLOBAL_DEV
Definition: bootblock.c:8
void nuvoton_pnp_enter_conf_state(pnp_devfn_t dev)
Definition: early_serial.c:33
void nuvoton_enable_serial(pnp_devfn_t dev, u16 iobase)
Definition: early_serial.c:48
void nuvoton_pnp_exit_conf_state(pnp_devfn_t dev)
Definition: early_serial.c:41
void pnp_set_logical_device(struct device *dev)
Definition: pnp_device.c:59
void pnp_write_config(struct device *dev, u8 reg, u8 value)
Definition: pnp_device.c:38