debug_v8p9.h 418 B

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