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/* Cortex a8 manual, table 12-11 */
14#define seL4_NumHWBreakpoints (8)
15#define seL4_NumExclusiveBreakpoints (6)
16#define seL4_NumExclusiveWatchpoints (2)
17#ifdef CONFIG_HARDWARE_DEBUG_API
18#define seL4_FirstWatchpoint (6)
19#define seL4_NumDualFunctionMonitors (0)
20#endif
21
22/* First address in the virtual address space that is not accessible to user level */
23#define seL4_UserTop 0xe0000000
24
25