forked from Imagelibrary/seL4
28 lines
691 B
C
28 lines
691 B
C
/*
|
|
* Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
|
|
* Copyright (C) 2021, Hensoldt Cyber GmbH
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
#pragma once
|
|
|
|
#ifdef HAVE_AUTOCONF
|
|
#include <autoconf.h>
|
|
#endif
|
|
|
|
/* Cortex A72 manual, section 10.3 */
|
|
#define seL4_NumHWBreakpoints (10)
|
|
#define seL4_NumExclusiveBreakpoints (6)
|
|
#define seL4_NumExclusiveWatchpoints (4)
|
|
#ifdef CONFIG_HARDWARE_DEBUG_API
|
|
#define seL4_FirstWatchpoint (6)
|
|
#define seL4_NumDualFunctionMonitors (0)
|
|
#endif
|
|
|
|
#if CONFIG_WORD_SIZE == 32
|
|
/* First address in the virtual address space that is not accessible to user level */
|
|
#define seL4_UserTop 0xe0000000
|
|
#else
|
|
/* otherwise this is defined at the arch level */
|
|
#endif
|