mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 04:30:24 +01:00
This commit lets the QEMU port's VIRT_RV64 board load and run native modules, via the appropriate configuration changes in mpconfigport.h. Now the CI test job for the QEMU/RV64 port can also run natmods and see whether they actually work, so the CI tasks script has been updated to bring RV64 to parity with RV32 as far as CI checks go. Documentation was also updated, since now all supported boards in the QEMU port should be able to run natmod tests. Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
89 lines
3.1 KiB
C
89 lines
3.1 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2014-2024 Damien P. George
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
// options to control how MicroPython is built
|
|
|
|
#define MICROPY_CONFIG_ROM_LEVEL (MICROPY_CONFIG_ROM_LEVEL_EXTRA_FEATURES)
|
|
|
|
#if defined(__ARM_ARCH_ISA_ARM)
|
|
#define MICROPY_EMIT_ARM (1)
|
|
#define MICROPY_EMIT_INLINE_THUMB (1)
|
|
#elif defined(__ARM_ARCH_ISA_THUMB)
|
|
#if !defined(QEMU_SOC_NRF51)
|
|
#define MICROPY_EMIT_THUMB (1)
|
|
#define MICROPY_EMIT_INLINE_THUMB (1)
|
|
#endif
|
|
#define MICROPY_MAKE_POINTER_CALLABLE(p) ((void *)((mp_uint_t)(p) | 1))
|
|
#elif defined(__riscv)
|
|
#if (__riscv_xlen == 32)
|
|
#define MICROPY_EMIT_RV32 (1)
|
|
#define MICROPY_EMIT_RV32_ZBA (1)
|
|
#define MICROPY_EMIT_INLINE_RV32 (1)
|
|
#elif (__riscv_xlen == 64)
|
|
#define MICROPY_PERSISTENT_CODE_LOAD_NATIVE (1)
|
|
#else
|
|
#error "Unsupported RISC-V platform!"
|
|
#endif
|
|
#endif
|
|
|
|
#define MICROPY_MALLOC_USES_ALLOCATED_SIZE (1)
|
|
#define MICROPY_PERSISTENT_CODE_LOAD (1)
|
|
#define MICROPY_MEM_STATS (1)
|
|
#define MICROPY_READER_VFS (1)
|
|
#define MICROPY_ENABLE_GC (1)
|
|
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)
|
|
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
|
|
#define MICROPY_WARNINGS (1)
|
|
#define MICROPY_PY_SYS_PLATFORM "qemu"
|
|
#define MICROPY_PY_ASYNCIO (0)
|
|
#define MICROPY_PY_MACHINE (1)
|
|
#define MICROPY_PY_MACHINE_INCLUDEFILE "ports/qemu/modmachine.c"
|
|
#define MICROPY_PY_MACHINE_RESET (1)
|
|
#define MICROPY_PY_MACHINE_PIN_BASE (1)
|
|
#define MICROPY_VFS (1)
|
|
#define MICROPY_VFS_ROM (1)
|
|
#define MICROPY_VFS_ROM_IOCTL (0)
|
|
|
|
// type definitions for the specific machine
|
|
|
|
#if defined(__riscv) && (__riscv_xlen == 64)
|
|
#define MP_SSIZE_MAX (0x7fffffffffffffff)
|
|
#else
|
|
#define MP_SSIZE_MAX (0x7fffffff)
|
|
#endif
|
|
|
|
typedef long mp_off_t;
|
|
|
|
// We need to provide a declaration/definition of alloca()
|
|
#include <alloca.h>
|
|
|
|
// We need an implementation of the log2 function which is not a macro.
|
|
#define MP_NEED_LOG2 (1)
|
|
|
|
#define MP_STATE_PORT MP_STATE_VM
|