
Implement changes to make the driver compatible with bolero V2.2. Change-Id: If2797a80f775c685ff2a6912de189b1d9b4906d0 Signed-off-by: Vangala, Amarnath <quic_avangala@quicinc.com>
26 lines
677 B
C
26 lines
677 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2019-2021, The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __LPASS_CDC_CLK_RSC_H
|
|
#define __LPASS_CDC_CLK_RSC_H
|
|
|
|
/* LPASS codec clock types */
|
|
#define TX_CORE_CLK 0
|
|
#define RX_CORE_CLK 1
|
|
#define WSA_CORE_CLK 2
|
|
#define VA_CORE_CLK 3
|
|
#define WSA2_CORE_CLK 4
|
|
#define RX_TX_CORE_CLK 5
|
|
#define WSA_TX_CORE_CLK 6
|
|
#define WSA2_TX_CORE_CLK 7
|
|
#define TX_NPL_CLK 8
|
|
#define RX_NPL_CLK 9
|
|
#define WSA_NPL_CLK 10
|
|
#define VA_NPL_CLK 11
|
|
#define MAX_CLK 12
|
|
|
|
#endif /* __LPASS_CDC_CLK_RSC_H */
|