summaryrefslogtreecommitdiffstats
path: root/src/ec/google/chromeec/i2c_tunnel/chip.h
blob: 01d52bd0b294f22fdbd48ef274c9db47e9a40289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* This file is part of the coreboot project. */

#ifndef __EC_GOOGLE_CHROMEEC_I2C_TUNNEL__
#define __EC_GOOGLE_CHROMEEC_I2C_TUNNEL__

struct ec_google_chromeec_i2c_tunnel_config {
	/* ACPI device name */
	const char *name;
	/* ACPI _UID */
	unsigned int uid;
	/* EC I2C bus number we tunnel to on the other side. */
	unsigned int remote_bus;
};

#endif /* __EC_GOOGLE_CHROMEEC_I2C_TUNNEL__ */