28 lines
852 B
C
28 lines
852 B
C
/* Copyright (c) 2019, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef __BOLERO_CODEC_CLK_RSC_H
|
|
#define __BOLERO_CODEC_CLK_RSC_H
|
|
|
|
/* Bolero clock types */
|
|
#define TX_CORE_CLK 0
|
|
#define RX_CORE_CLK 1
|
|
#define WSA_CORE_CLK 2
|
|
#define VA_CORE_CLK 3
|
|
#define TX_NPL_CLK 4
|
|
#define RX_NPL_CLK 5
|
|
#define WSA_NPL_CLK 6
|
|
#define VA_NPL_CLK 7
|
|
#define MAX_CLK 8
|
|
|
|
#endif /* __BOLERO_CODEC_CLK_RSC_H */
|