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 #include <autoconf.h> 10 11 /* Cortex A7 manual, table 10-2 */ 12 #define seL4_NumHWBreakpoints (10) 13 #define seL4_NumExclusiveBreakpoints (6) 14 #define seL4_NumExclusiveWatchpoints (4) 15 #ifdef CONFIG_HARDWARE_DEBUG_API 16 #define seL4_FirstWatchpoint (6) 17 #define seL4_NumDualFunctionMonitors (0) 18 #endif 19 20 /* First address in the virtual address space that is not accessible to user level */ 21 #define seL4_UserTop 0xa0000000 22