xref: /rk3399_ARM-atf/include/lib/extensions/brbe.h (revision 2e0efb3f4039163859cf83ae6b683946934a72a3)
1 /*
2  * Copyright (c) 2022-2024, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef BRBE_H
8 #define BRBE_H
9 
10 #include <context.h>
11 
12 #if ENABLE_BRBE_FOR_NS
13 void brbe_enable(cpu_context_t *ctx);
14 #else
brbe_enable(cpu_context_t * ctx)15 static inline void brbe_enable(cpu_context_t *ctx)
16 {
17 }
18 #endif /* ENABLE_BRBE_FOR_NS */
19 
20 #endif /* BRBE_H */
21