/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __DRIVERS_INTEL_ISH_CHIP_H__
#define __DRIVERS_INTEL_ISH_CHIP_H__

#include <stdbool.h>

/*
 * Intel Integrated Sensor Hub (ISH)
 */
struct drivers_intel_ish_config {
	/* Firmware name used by kernel for loading ISH firmware */
	const char *firmware_name;

	/* Add `DmaProperty` in _DSD */
	bool add_acpi_dma_property;
};

#endif /* __DRIVERS_INTEL_ISH_CHIP_H__ */