blob: 8a5b69c34c9a9e5b3e1891ad8448c7939bc41620 (
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 */
|