[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/9] PE: Add RISC-V definitions
From: |
Leif Lindholm |
Subject: |
Re: [PATCH 2/9] PE: Add RISC-V definitions |
Date: |
Wed, 7 Nov 2018 15:48:52 +0000 |
User-agent: |
NeoMutt/20170113 (1.7.2) |
On Tue, Nov 06, 2018 at 06:58:30PM +0100, Alexander Graf wrote:
> The PE format defines magic numbers as well as relocation identifiers for
> RISC-V. Add them to our include file, so we can make use of them.
>
> Signed-off-by: Alexander Graf <address@hidden>
This patch matches my interpretation of
https://docs.microsoft.com/en-gb/windows/desktop/Debug/pe-format
Reviewed-by: Leif Lindholm <address@hidden>
> ---
> include/grub/efi/pe32.h | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/include/grub/efi/pe32.h b/include/grub/efi/pe32.h
> index 7d44732d2..d1359eb66 100644
> --- a/include/grub/efi/pe32.h
> +++ b/include/grub/efi/pe32.h
> @@ -70,6 +70,8 @@ struct grub_pe32_coff_header
> #define GRUB_PE32_MACHINE_X86_64 0x8664
> #define GRUB_PE32_MACHINE_ARMTHUMB_MIXED 0x01c2
> #define GRUB_PE32_MACHINE_ARM64 0xAA64
> +#define GRUB_PE32_MACHINE_RISCV32 0x5032
> +#define GRUB_PE32_MACHINE_RISCV64 0x5064
>
> #define GRUB_PE32_RELOCS_STRIPPED 0x0001
> #define GRUB_PE32_EXECUTABLE_IMAGE 0x0002
> @@ -281,9 +283,12 @@ struct grub_pe32_fixup_block
> #define GRUB_PE32_REL_BASED_HIGHADJ 4
> #define GRUB_PE32_REL_BASED_MIPS_JMPADDR 5
> #define GRUB_PE32_REL_BASED_ARM_MOV32A 5
> +#define GRUB_PE32_REL_BASED_RISCV_HI20 5
> #define GRUB_PE32_REL_BASED_SECTION 6
> #define GRUB_PE32_REL_BASED_REL 7
> #define GRUB_PE32_REL_BASED_ARM_MOV32T 7
> +#define GRUB_PE32_REL_BASED_RISCV_LOW12I 7
> +#define GRUB_PE32_REL_BASED_RISCV_LOW12S 8
> #define GRUB_PE32_REL_BASED_IA64_IMM64 9
> #define GRUB_PE32_REL_BASED_DIR64 10
> #define GRUB_PE32_REL_BASED_HIGH3ADJ 11
> --
> 2.12.3
>
- [PATCH 0/9] Add RISC-V support, Alexander Graf, 2018/11/06
- [PATCH 7/9] RISC-V: Add awareness for RISC-V reloations, Alexander Graf, 2018/11/06
- [PATCH 2/9] PE: Add RISC-V definitions, Alexander Graf, 2018/11/06
- [PATCH 4/9] RISC-V: Add setjmp implementation, Alexander Graf, 2018/11/06
- [PATCH 8/9] RISC-V: Add auxiliary files, Alexander Graf, 2018/11/06
- [PATCH 1/9] efi: Rename armxx to arch, Alexander Graf, 2018/11/06
- [PATCH 9/9] RISC-V: Add to build system, Alexander Graf, 2018/11/06
- [PATCH 6/9] RISC-V: Add Linux load logic, Alexander Graf, 2018/11/06