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