1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootblock_common.h>
4 #include <device/pnp_ops.h>
6 #define SERIAL_DEV PNP_DEV(0x6E, 1) /* ITE8528 UART1 */
8 void bootblock_mainboard_early_init(void)
10 /* Enable the serial port inside the EC */
11 pnp_set_logical_device(SERIAL_DEV
);
12 pnp_set_enable(SERIAL_DEV
, 1);