Aradhya Bhatia | 5b09538 | 2024-02-12 15:36:35 +0530 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
2 | /* | ||||
3 | * Quality of Service (QoS) Configuration Header File | ||||
4 | * | ||||
5 | * Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/ | ||||
6 | */ | ||||
7 | #ifndef _K3_QOS_H_ | ||||
8 | #define _K3_QOS_H_ | ||||
9 | |||||
10 | #include <linux/kernel.h> | ||||
11 | |||||
12 | struct k3_qos_data { | ||||
13 | u32 reg; | ||||
14 | u32 val; | ||||
15 | }; | ||||
16 | |||||
17 | #if (IS_ENABLED(CONFIG_K3_QOS)) | ||||
18 | extern struct k3_qos_data qos_data[]; | ||||
19 | extern u32 qos_count; | ||||
20 | #endif | ||||
21 | |||||
22 | #endif /* _K3_QOS_H_ */ |