xref: /aosp_15_r20/external/coreboot/src/drivers/intel/ish/chip.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __DRIVERS_INTEL_ISH_CHIP_H__
4 #define __DRIVERS_INTEL_ISH_CHIP_H__
5 
6 #include <stdbool.h>
7 
8 /*
9  * Intel Integrated Sensor Hub (ISH)
10  */
11 struct drivers_intel_ish_config {
12 	/* Firmware name used by kernel for loading ISH firmware */
13 	const char *firmware_name;
14 
15 	/* Add `DmaProperty` in _DSD */
16 	bool add_acpi_dma_property;
17 };
18 
19 #endif /* __DRIVERS_INTEL_ISH_CHIP_H__ */
20