xref: /rk3399_ARM-atf/plat/mediatek/include/drivers/booker.h (revision 767852d7f5de92e175fd50fa1f656de62984e0cb)
1 /*
2  * Copyright (c) 2025, MediaTek Inc. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef BOOKER_H
8 #define BOOKER_H
9 
10 #define MTU_AUX_CTL		0x0A08
11 #define TC_NO_FILL_MODE_BIT	0x1
12 
13 #define MTU_TC_FLUSH_PR		0x0A30
14 #define TC_FLUSH_ENABLE_BIT	0x0
15 
16 #define MTU_TC_FLUSH_SR		0x0A38
17 #define TC_FLUSH_COMPLETE_BIT	0x0
18 
19 void booker_flush(void);
20 
21 #endif /* BOOKER_H*/
22