1/*
2 * Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9#ifdef HAVE_AUTOCONF
10#include <autoconf.h>
11#endif
12
13/* Defined for each architecture: the number of hardware breakpoints
14 * available.
15 */
16#ifdef CONFIG_HARDWARE_DEBUG_API
17#define seL4_NumHWBreakpoints (4)
18#define seL4_FirstBreakpoint (-1)
19#define seL4_NumExclusiveBreakpoints (0)
20#define seL4_FirstWatchpoint (-1)
21#define seL4_NumExclusiveWatchpoints (0)
22#define seL4_FirstDualFunctionMonitor (0)
23#define seL4_NumDualFunctionMonitors (4)
24#endif
25
26