1 /*
2  * Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
3  *
4  * SPDX-License-Identifier: BSD-2-Clause
5  */
6 #pragma once
7 
8 #include <autoconf.h>
9 
10 /* Cortex a15 manual, section 10.2.2 */
11 #define seL4_NumHWBreakpoints (10)
12 #define seL4_NumExclusiveBreakpoints (6)
13 #define seL4_NumExclusiveWatchpoints (4)
14 #ifdef CONFIG_HARDWARE_DEBUG_API
15 #define seL4_FirstWatchpoint (6)
16 #define seL4_NumDualFunctionMonitors (0)
17 #endif
18 
19 /* First address in the virtual address space that is not accessible to user level */
20 #define seL4_UserTop 0xe0000000
21