/* SPDX-License-Identifier: GPL-2.0-only */ /* * Intel Smart Sound Technology * * Copyright (C) 2013, Intel Corporation */ #ifndef __SOUND_SOC_SST_DSP_PRIV_H #define __SOUND_SOC_SST_DSP_PRIV_H #include <linux/kernel.h> #include <linux/types.h> #include <linux/interrupt.h> #include <linux/firmware.h> #include "../skylake/skl-sst-dsp.h" /* * DSP Operations exported by platform Audio DSP driver. */ struct sst_ops { … }; /* * Audio DSP memory offsets and addresses. */ struct sst_addr { … }; /* * Audio DSP Mailbox configuration. */ struct sst_mailbox { … }; /* * Generic SST Shim Interface. */ struct sst_dsp { … }; #endif