diff options
author | Tom Rini <trini@konsulko.com> | 2025-05-21 08:59:10 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-05-21 09:00:21 -0600 |
commit | 8f85a7345ed5df70a155f0630da72970eb01d87a (patch) | |
tree | 10acf511e4f955f5874d9e64331c841609b4804a /include/image.h | |
parent | 0a87352281ade2b822ce0360e1f105f6e43a96e1 (diff) | |
parent | ff6e20c32ff33c6963f7d0a79a0914681461f4fa (diff) |
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-riscv
CI: https://source.denx.de/u-boot/custodians/u-boot-riscv/-/pipelines/26259
- Initial SPL support for T-Head TH1520 SoC
- Improve usability of TH1520 with mainline SPL
- Support building RV32 & RV64 images
- riscv: Improve jh7110 support
Diffstat (limited to 'include/image.h')
-rw-r--r-- | include/image.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/image.h b/include/image.h index c1db8383459..4620782c069 100644 --- a/include/image.h +++ b/include/image.h @@ -138,7 +138,8 @@ enum { IH_ARCH_ARC, /* Synopsys DesignWare ARC */ IH_ARCH_X86_64, /* AMD x86_64, Intel and Via */ IH_ARCH_XTENSA, /* Xtensa */ - IH_ARCH_RISCV, /* RISC-V */ + IH_ARCH_RISCV, /* RISC-V 32 bit*/ + IH_ARCH_RISCV64, /* RISC-V 64 bit*/ IH_ARCH_COUNT, }; |