1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */ 2 /* 3 * This file is provided under a dual BSD/GPLv2 license. When using or 4 * redistributing this file, you may do so under either license. 5 * 6 * Copyright(c) 2024 Intel Corporation 7 */ 8 9 #ifndef __SOF_INTEL_LNL_H 10 #define __SOF_INTEL_LNL_H 11 12 #define LNL_DSP_REG_HFDSC 0x160200 /* DSP core0 status */ 13 #define LNL_DSP_REG_HFDEC 0x160204 /* DSP core0 error */ 14 15 int sof_lnl_set_ops(struct snd_sof_dev *sdev, struct snd_sof_dsp_ops *dsp_ops); 16 17 bool lnl_dsp_check_sdw_irq(struct snd_sof_dev *sdev); 18 int lnl_dsp_disable_interrupts(struct snd_sof_dev *sdev); 19 bool lnl_sdw_check_wakeen_irq(struct snd_sof_dev *sdev); 20 21 #endif /* __SOF_INTEL_LNL_H */ 22