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