mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 01:40:14 +01:00
Some checks failed
JavaScript code lint and formatting with Biome / eslint (push) Has been cancelled
Check code formatting / code-formatting (push) Has been cancelled
Check spelling with codespell / codespell (push) Has been cancelled
Build docs / build (push) Has been cancelled
Check examples / embedding (push) Has been cancelled
Package mpremote / build (push) Has been cancelled
.mpy file format and tools / test (push) Has been cancelled
Build ports metadata / build (push) Has been cancelled
alif port / build_alif (alif_ae3_build) (push) Has been cancelled
cc3200 port / build (push) Has been cancelled
esp32 port / build_idf (esp32_build_c2_c6) (push) Has been cancelled
esp32 port / build_idf (esp32_build_cmod_spiram_s2) (push) Has been cancelled
esp32 port / build_idf (esp32_build_s3_c3) (push) Has been cancelled
esp8266 port / build (push) Has been cancelled
mimxrt port / build (push) Has been cancelled
nrf port / build (push) Has been cancelled
powerpc port / build (push) Has been cancelled
qemu port / build_and_test_arm (bigendian) (push) Has been cancelled
qemu port / build_and_test_arm (sabrelite) (push) Has been cancelled
qemu port / build_and_test_arm (thumb_hardfp) (push) Has been cancelled
qemu port / build_and_test_arm (thumb_softfp) (push) Has been cancelled
qemu port / build_and_test_rv32 (push) Has been cancelled
qemu port / build_and_test_rv64 (push) Has been cancelled
renesas-ra port / build_renesas_ra_board (push) Has been cancelled
rp2 port / build (push) Has been cancelled
samd port / build (push) Has been cancelled
stm32 port / build_stm32 (stm32_misc_build) (push) Has been cancelled
stm32 port / build_stm32 (stm32_nucleo_build) (push) Has been cancelled
stm32 port / build_stm32 (stm32_pyb_build) (push) Has been cancelled
unix port / minimal (push) Has been cancelled
unix port / reproducible (push) Has been cancelled
unix port / standard (push) Has been cancelled
unix port / standard_v2 (push) Has been cancelled
unix port / coverage (push) Has been cancelled
unix port / coverage_32bit (push) Has been cancelled
unix port / nanbox (push) Has been cancelled
unix port / longlong (push) Has been cancelled
unix port / float (push) Has been cancelled
unix port / gil_enabled (push) Has been cancelled
unix port / stackless_clang (push) Has been cancelled
unix port / float_clang (push) Has been cancelled
unix port / settrace_stackless (push) Has been cancelled
unix port / macos (push) Has been cancelled
unix port / qemu_mips (push) Has been cancelled
unix port / qemu_arm (push) Has been cancelled
unix port / qemu_riscv64 (push) Has been cancelled
unix port / sanitize_address (push) Has been cancelled
unix port / sanitize_undefined (push) Has been cancelled
webassembly port / build (push) Has been cancelled
windows port / build-vs (Debug, x64, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Debug, x64, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Debug, x86, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Debug, x86, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x64, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x64, dev, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x64, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x64, standard, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x64, standard, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x64, standard, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x86, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x86, dev, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x86, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x86, standard, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, x86, standard, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x86, standard, 2022, [17, 18)) (push) Has been cancelled
windows port / build-mingw (i686, mingw32, dev) (push) Has been cancelled
windows port / build-mingw (i686, mingw32, standard) (push) Has been cancelled
windows port / build-mingw (x86_64, mingw64, dev) (push) Has been cancelled
windows port / build-mingw (x86_64, mingw64, standard) (push) Has been cancelled
windows port / cross-build-on-linux (push) Has been cancelled
zephyr port / build (push) Has been cancelled
Python code lint and formatting with ruff / ruff (push) Has been cancelled
This adds a QEMU-based bare metal RISC-V 64 bits port. For the time being only QEMU's "virt" 64 bits board is supported, using the lp64 ABI and the RV64IMC architecture. The port's README is also updated to keep track of these changes. Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
295 lines
12 KiB
C
295 lines
12 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2024 Alessandro Gatti
|
|
*
|
|
* 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 <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
// Vector table
|
|
|
|
void mtvec_table(void) __attribute__((naked, section(".text.mtvec"), aligned(256)));
|
|
|
|
// Default interrupts
|
|
|
|
#define ASSIGN_EMPTY_MACHINE_INTERRUPT(interrupt_name) \
|
|
void interrupt_name(void) __attribute__((alias("mtvec_nop")))
|
|
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_ssi);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_msi);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_sti);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_mti);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_sei);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_mei);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq0);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq1);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq2);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq3);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq4);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq5);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq6);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq7);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq8);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq9);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq10);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq11);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq12);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq13);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq14);
|
|
ASSIGN_EMPTY_MACHINE_INTERRUPT(mtvec_plat_irq15);
|
|
|
|
void mtvec_table(void) {
|
|
__asm volatile (
|
|
".org mtvec_table + 0 \n"
|
|
"jal zero, mtvec_exception \n" // Exception Handler
|
|
".org mtvec_table + 4 \n"
|
|
"jal zero, mtvec_ssi \n" // Supervisor Software Interrupt
|
|
".org mtvec_table + 12 \n"
|
|
"jal zero, mtvec_msi \n" // Machine Software Interrupt
|
|
".org mtvec_table + 20 \n"
|
|
"jal zero, mtvec_sti \n" // Supervisor Timer Interrupt
|
|
".org mtvec_table + 28 \n"
|
|
"jal zero, mtvec_mti \n" // Machine Timer Interrupt
|
|
".org mtvec_table + 36 \n"
|
|
"jal zero, mtvec_sei \n" // Supervisor External Interrupt
|
|
".org mtvec_table + 44 \n"
|
|
"jal zero, mtvec_mei \n" // Machine External Interrupt
|
|
// Not sure how many platform interrupts QEMU handles...
|
|
".org mtvec_table + 48 \n"
|
|
"jal mtvec_plat_irq0 \n" // Platform Interrupt #0
|
|
"jal mtvec_plat_irq1 \n" // Platform Interrupt #1
|
|
"jal mtvec_plat_irq2 \n" // Platform Interrupt #2
|
|
"jal mtvec_plat_irq3 \n" // Platform Interrupt #3
|
|
"jal mtvec_plat_irq4 \n" // Platform Interrupt #4
|
|
"jal mtvec_plat_irq5 \n" // Platform Interrupt #5
|
|
"jal mtvec_plat_irq6 \n" // Platform Interrupt #6
|
|
"jal mtvec_plat_irq7 \n" // Platform Interrupt #7
|
|
"jal mtvec_plat_irq8 \n" // Platform Interrupt #8
|
|
"jal mtvec_plat_irq9 \n" // Platform Interrupt #9
|
|
"jal mtvec_plat_irq10 \n" // Platform Interrupt #10
|
|
"jal mtvec_plat_irq11 \n" // Platform Interrupt #11
|
|
"jal mtvec_plat_irq12 \n" // Platform Interrupt #12
|
|
"jal mtvec_plat_irq13 \n" // Platform Interrupt #13
|
|
"jal mtvec_plat_irq14 \n" // Platform Interrupt #14
|
|
"jal mtvec_plat_irq15 \n" // Platform Interrupt #15
|
|
:
|
|
:
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
static volatile uintptr_t registers_copy[35] = { 0 };
|
|
|
|
static const char *exception_causes[] = {
|
|
"Reserved", // 0
|
|
"Supervisor software interrupt", // 1
|
|
"Machine software interrupt", // 2
|
|
"Supervisor timer interrupt", // 3
|
|
"Machine timer interrupt", // 4
|
|
"Supervisor external interrupt", // 5
|
|
"Machine external interrupt", // 6
|
|
"Designated for platform use", // 7
|
|
"Instruction address misaligned", // 8
|
|
"Instruction address fault", // 9
|
|
"Illegal instruction", // 10
|
|
"Breakpoint", // 11
|
|
"Load address misaligned", // 12
|
|
"Load address fault", // 13
|
|
"Store/AMO address misaligned", // 14
|
|
"Store/AMO access fault", // 15
|
|
"Environment call from U-mode", // 16
|
|
"Environment call from S-mode", // 17
|
|
"Environment call from M-mode", // 18
|
|
"Instruction page fault", // 19
|
|
"Load page fault", // 20
|
|
"Store/AMO page fault", // 21
|
|
"Designated for custom use" // 22
|
|
};
|
|
|
|
#define MSB64 (1ULL << 63)
|
|
|
|
static const char *lookup_cause(uintptr_t mcause) {
|
|
if (mcause & MSB64) {
|
|
switch (mcause & (MSB64 - 1)) {
|
|
case 1:
|
|
return exception_causes[1];
|
|
case 3:
|
|
return exception_causes[2];
|
|
case 5:
|
|
return exception_causes[3];
|
|
case 7:
|
|
return exception_causes[4];
|
|
case 9:
|
|
return exception_causes[5];
|
|
case 11:
|
|
return exception_causes[6];
|
|
default:
|
|
return ((mcause & (MSB64 - 1)) >= 16) ?
|
|
exception_causes[7] :
|
|
exception_causes[0];
|
|
}
|
|
}
|
|
|
|
switch (mcause) {
|
|
case 0:
|
|
return exception_causes[8];
|
|
case 1:
|
|
return exception_causes[9];
|
|
case 2:
|
|
return exception_causes[10];
|
|
case 3:
|
|
return exception_causes[11];
|
|
case 4:
|
|
return exception_causes[12];
|
|
case 5:
|
|
return exception_causes[13];
|
|
case 6:
|
|
return exception_causes[14];
|
|
case 7:
|
|
return exception_causes[15];
|
|
case 8:
|
|
return exception_causes[16];
|
|
case 9:
|
|
return exception_causes[17];
|
|
case 11:
|
|
return exception_causes[18];
|
|
case 12:
|
|
return exception_causes[19];
|
|
case 13:
|
|
return exception_causes[20];
|
|
case 15:
|
|
return exception_causes[21];
|
|
default: {
|
|
if ((mcause >= 24 && mcause <= 31) ||
|
|
(mcause >= 48 && mcause <= 63)) {
|
|
return exception_causes[22];
|
|
}
|
|
|
|
return exception_causes[0];
|
|
}
|
|
}
|
|
}
|
|
|
|
#pragma GCC push_options
|
|
#pragma GCC optimize ("align-functions=8")
|
|
|
|
__attribute__((interrupt("machine"), weak)) void mtvec_nop(void) {
|
|
}
|
|
|
|
__attribute__((interrupt("machine"), weak)) void mtvec_exception(void) {
|
|
__asm volatile (
|
|
"csrrw x31, mscratch, x31 \n" // Save X31
|
|
"la x31, registers_copy \n" // Load target address
|
|
"sd x1, 0(x31) \n" // Save X1
|
|
"sd x2, 8(x31) \n" // Save X2
|
|
"sd x3, 16(x31) \n" // Save X3
|
|
"sd x4, 24(x31) \n" // Save X4
|
|
"sd x5, 32(x31) \n" // Save X5
|
|
"sd x6, 40(x31) \n" // Save X6
|
|
"sd x7, 48(x31) \n" // Save X7
|
|
"sd x8, 56(x31) \n" // Save X8
|
|
"sd x9, 64(x31) \n" // Save X9
|
|
"sd x10, 72(x31) \n" // Save X10
|
|
"sd x11, 80(x31) \n" // Save X11
|
|
"sd x12, 88(x31) \n" // Save X12
|
|
"sd x13, 96(x31) \n" // Save X13
|
|
"sd x14, 104(x31) \n" // Save X14
|
|
"sd x15, 112(x31) \n" // Save X15
|
|
"sd x16, 120(x31) \n" // Save X16
|
|
"sd x17, 128(x31) \n" // Save X17
|
|
"sd x18, 136(x31) \n" // Save X18
|
|
"sd x19, 144(x31) \n" // Save X19
|
|
"sd x20, 152(x31) \n" // Save X20
|
|
"sd x21, 160(x31) \n" // Save X21
|
|
"sd x22, 168(x31) \n" // Save X22
|
|
"sd x23, 176(x31) \n" // Save X23
|
|
"sd x24, 184(x31) \n" // Save X24
|
|
"sd x25, 192(x31) \n" // Save X25
|
|
"sd x26, 200(x31) \n" // Save X26
|
|
"sd x27, 208(x31) \n" // Save X27
|
|
"sd x28, 216(x31) \n" // Save X28
|
|
"sd x29, 224(x31) \n" // Save X29
|
|
"sd x30, 232(x31) \n" // Save X30
|
|
"csrr x30, mscratch \n" // Restore X31
|
|
"sd x30, 240(x31) \n" // Save X31
|
|
"csrr x30, mepc \n" // Load MEPC
|
|
"sd x30, 248(x31) \n" // Save MEPC
|
|
"csrr x30, mcause \n" // Load MCAUSE
|
|
"sd x30, 256(x31) \n" // Save MCAUSE
|
|
"csrr x30, mtval \n" // Load MTVAL
|
|
"sd x30, 264(x31) \n" // Save MTVAL
|
|
"csrr x30, mstatus \n" // Load MSTATUS
|
|
"sd x30, 272(x31) \n" // Save MSTATUS
|
|
"ld x30, 232(x31) \n" // Restore X30
|
|
"ld x31, 240(x31) \n" // Restore X31
|
|
:
|
|
:
|
|
: "memory"
|
|
);
|
|
|
|
printf("\nMACHINE EXCEPTION CAUGHT:\n\n");
|
|
|
|
printf(" RA=%016lX SP=%016lX GP=%016lX TP=%016lX T0=%016lX T1=%016lX\n",
|
|
registers_copy[0], registers_copy[1], registers_copy[2],
|
|
registers_copy[3], registers_copy[4], registers_copy[5]);
|
|
printf(" T2=%016lX S0=%016lX S1=%016lX A0=%016lX A1=%016lX A2=%016lX\n",
|
|
registers_copy[6], registers_copy[7], registers_copy[8],
|
|
registers_copy[9], registers_copy[10], registers_copy[11]);
|
|
printf(" A3=%016lX A4=%016lX A5=%016lX A6=%016lX A7=%016lX S2=%016lX\n",
|
|
registers_copy[12], registers_copy[13], registers_copy[14],
|
|
registers_copy[15], registers_copy[16], registers_copy[17]);
|
|
printf(" S3=%016lX S4=%016lX S5=%016lX S6=%016lX S7=%016lX S8=%016lX\n",
|
|
registers_copy[18], registers_copy[19], registers_copy[20],
|
|
registers_copy[21], registers_copy[22], registers_copy[23]);
|
|
printf(" S9=%016lX S10=%016lX S11=%016lX T3=%016lX T4=%016lX T5=%016lX\n",
|
|
registers_copy[24], registers_copy[25], registers_copy[26],
|
|
registers_copy[27], registers_copy[28], registers_copy[29]);
|
|
printf(" T6=%016lX\n\n", registers_copy[30]);
|
|
|
|
printf(" MEPC=%016lX MTVAL=%016lX MSTATUS=%016lx MCAUSE=%016lx (%s)\n",
|
|
registers_copy[31], registers_copy[33], registers_copy[34],
|
|
registers_copy[32], lookup_cause(registers_copy[32]));
|
|
|
|
exit(-1);
|
|
}
|
|
|
|
#pragma GCC pop_options
|
|
|
|
void set_interrupt_table(void) {
|
|
__asm volatile (
|
|
"csrrci s0, mstatus, 8 \n" // S0 = MSTATUS & ~MIE
|
|
"csrw mstatus, s0 \n" // Global machine interrupts are disabled
|
|
"csrw mie, zero \n" // Disable machine interrupts
|
|
"csrw mip, zero \n" // Clear pending machine interrupts
|
|
"addi s0, %0, 1 \n" // Vectored machine interrupts enabled
|
|
"csrw mtvec, s0 \n" // Set new machine vector table
|
|
"csrrsi s0, mstatus, 8 \n" // S0 = MSTATUS | MIE
|
|
"csrw mstatus, s0 \n" // Global machine interrupts are enabled
|
|
:
|
|
: "r" (mtvec_table)
|
|
: "memory"
|
|
);
|
|
}
|