1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef EC_GOOGLE_WILCO_BOOTBLOCK_H 4 #define EC_GOOGLE_WILCO_BOOTBLOCK_H 5 6 /** 7 * wilco_ec_early_init 8 * 9 * This function performs early initialization of the EC: 10 * 11 * - Enable EC UART passthru for COM1 if serial console support 12 * is enabled with CONFIG(DRIVERS_UART_8250IO). 13 */ 14 void wilco_ec_early_init(void); 15 16 #endif /* EC_GOOGLE_WILCO_BOOTBLOCK_H */ 17