1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (C) Foundries Ltd. 2022 - All Rights Reserved
4  * Author: Jorge Ramirez <jorge@foundries.io>
5  */
6 
7 #ifndef I2C_NATIVE_H_
8 #define I2C_NATIVE_H_
9 
10 #include <kernel/rpc_io_i2c.h>
11 
12 TEE_Result native_i2c_transfer(struct rpc_i2c_request *req,
13 			       size_t *bytes);
14 int native_i2c_init(void);
15 
16 #endif
17