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