blob: df59ccba2449ed4ee0f14f235a65d31cf5a65693 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#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 */
|