mirror of
https://github.com/seL4/seL4.git
synced 2026-03-27 18:39:55 +00:00
This new platform is NXP Semiconductor's Evaluation Kit for the i.MX 8M Plus Applications Processor. It's from the i.MX 8M family of processors and is largely similar to the existing i.MX 8M Quad and i.MX 8M Mini platforms. Signed-off-by: Damon Lee <damon@kry10.com>
18 lines
378 B
C
18 lines
378 B
C
/*
|
|
* Copyright 2024, Kry10 Limited.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <sel4/config.h>
|
|
#include <sel4/arch/constants_cortex_a53.h>
|
|
|
|
#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
|