blob: e00e1de5b9cba4457e4b019403533235a5d52473 [file] [log] [blame]
Aradhya Bhatia5b095382024-02-12 15:36:35 +05301/* 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
12struct k3_qos_data {
13 u32 reg;
14 u32 val;
15};
16
17#if (IS_ENABLED(CONFIG_K3_QOS))
18extern struct k3_qos_data qos_data[];
19extern u32 qos_count;
20#endif
21
22#endif /* _K3_QOS_H_ */