xref: /aosp_15_r20/external/coreboot/src/drivers/generic/bayhub/chip.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __DRIVERS_GENERIC_BAYHUB_CHIP_H__
4 #define __DRIVERS_GENERIC_BAYHUB_CHIP_H__
5 
6 #include <acpi/acpi_device.h>
7 
8 /*
9  * Bayhub BG720 PCI to eMMC bridge
10  */
11 struct drivers_generic_bayhub_config {
12 	/* 1 to enable power-saving mode, 0 to disable */
13 	int power_saving;
14 
15 	/* When set, disables programming HS200 mode */
16 	bool disable_hs200_mode;
17 
18 	/* CLK and DAT tuning values */
19 	uint8_t vih_tuning_value;
20 };
21 
22 #endif /* __DRIVERS_GENERIC_BAYHUB_CHIP_H__ */
23