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