xref: /aosp_15_r20/external/coreboot/src/ec/clevo/it5570e/i2ec.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef EC_CLEVO_IT5570E_I2EC_H
4 #define EC_CLEVO_IT5570E_I2EC_H
5 
6 /*
7  * Read/write I2EC registers through SIO "depth 2" address space
8  */
9 
10 uint8_t ec_d2i2ec_read(uint16_t addr);
11 void ec_d2i2ec_write(uint16_t addr, uint8_t val);
12 
13 #endif /* EC_CLEVO_IT5570E_I2EC_H */
14