blob: 6a7ef11f411eacfc8390dfb3b1c8c3ed767862fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
/*
* This file is provided under a dual BSD/GPLv2 license. When using or
* redistributing this file, you may do so under either license.
*
* Copyright(c) 2025 Intel Corporation
*/
#ifndef __SOF_INTEL_PTL_H
#define __SOF_INTEL_PTL_H
#define PTL_MICPVCP_DDZE_FORCED BIT(16)
#define PTL_MICPVCP_DDZE_ENABLED BIT(17)
#define PTL_MICPVCP_DDZLS_SDW GENMASK(26, 20)
#define PTL_MICPVCP_GET_SDW_MASK(x) (((x) & PTL_MICPVCP_DDZLS_SDW) >> 20)
int sof_ptl_set_ops(struct snd_sof_dev *sdev, struct snd_sof_dsp_ops *dsp_ops);
#endif /* __SOF_INTEL_PTL_H */
|