Merge branch 'patch/mkimage-riscv' into allwinner

This commit is contained in:
Samuel Holland 2022-03-17 23:43:12 -05:00
commit 226053a04a
4 changed files with 69 additions and 8 deletions

View File

@ -411,7 +411,7 @@ endif
$(obj)/$(SPL_BIN).sfp: $(obj)/$(SPL_BIN).bin FORCE $(obj)/$(SPL_BIN).sfp: $(obj)/$(SPL_BIN).bin FORCE
$(call if_changed,mkimage) $(call if_changed,mkimage)
MKIMAGEFLAGS_sunxi-spl.bin = -T sunxi_egon \ MKIMAGEFLAGS_sunxi-spl.bin = -A $(ARCH) -T sunxi_egon \
-n $(CONFIG_DEFAULT_DEVICE_TREE) -n $(CONFIG_DEFAULT_DEVICE_TREE)
OBJCOPYFLAGS_u-boot-spl-dtb.hex := -I binary -O ihex --change-address=$(CONFIG_SPL_TEXT_BASE) OBJCOPYFLAGS_u-boot-spl-dtb.hex := -I binary -O ihex --change-address=$(CONFIG_SPL_TEXT_BASE)

View File

@ -53,6 +53,7 @@ struct image_tool_params {
int pflag; int pflag;
int vflag; int vflag;
int xflag; int xflag;
int Aflag;
int skipcpy; int skipcpy;
int os; int os;
int arch; int arch;

View File

@ -172,6 +172,7 @@ static void process_args(int argc, char **argv)
show_valid_options(IH_ARCH); show_valid_options(IH_ARCH);
usage("Invalid architecture"); usage("Invalid architecture");
} }
params.Aflag = 1;
break; break;
case 'b': case 'b':
if (add_content(IH_TYPE_FLATDT, optarg)) { if (add_content(IH_TYPE_FLATDT, optarg)) {

View File

@ -15,9 +15,29 @@
#define PAD_SIZE 8192 #define PAD_SIZE 8192
#define PAD_SIZE_MIN 512 #define PAD_SIZE_MIN 512
static int egon_get_arch(struct image_tool_params *params)
{
if (params->Aflag)
return params->arch;
/* For compatibility, assume ARM when no architecture specified */
return IH_ARCH_ARM;
}
static int egon_check_params(struct image_tool_params *params) static int egon_check_params(struct image_tool_params *params)
{ {
/* We just need a binary image file. */ /*
* Check whether the architecture is supported.
*/
switch (egon_get_arch(params)) {
case IH_ARCH_ARM:
case IH_ARCH_RISCV:
break;
default:
return EXIT_FAILURE;
}
/* We need a binary image file. */
return !params->dflag; return !params->dflag;
} }
@ -27,9 +47,22 @@ static int egon_verify_header(unsigned char *ptr, int image_size,
const struct boot_file_head *header = (void *)ptr; const struct boot_file_head *header = (void *)ptr;
uint32_t length; uint32_t length;
/* First 4 bytes must be an ARM branch instruction. */ /*
if ((le32_to_cpu(header->b_instruction) & 0xff000000) != 0xea000000) * First 4 bytes must be a branch instruction of the corresponding
return EXIT_FAILURE; * architecture.
*/
switch (egon_get_arch(params)) {
case IH_ARCH_ARM:
if ((le32_to_cpu(header->b_instruction) & 0xff000000) != 0xea000000)
return EXIT_FAILURE;
break;
case IH_ARCH_RISCV:
if ((le32_to_cpu(header->b_instruction) & 0x00000fff) != 0x0000006f)
return EXIT_FAILURE;
break;
default:
return EXIT_FAILURE; /* Unknown architecture */
}
if (memcmp(header->magic, BOOT0_MAGIC, sizeof(header->magic))) if (memcmp(header->magic, BOOT0_MAGIC, sizeof(header->magic)))
return EXIT_FAILURE; return EXIT_FAILURE;
@ -78,9 +111,35 @@ static void egon_set_header(void *buf, struct stat *sbuf, int infd,
uint32_t checksum = 0, value; uint32_t checksum = 0, value;
int i; int i;
/* Generate an ARM branch instruction to jump over the header. */ /*
value = 0xea000000 | (sizeof(struct boot_file_head) / 4 - 2); * Different architectures need different first instruction to
header->b_instruction = cpu_to_le32(value); * branch to the body.
*/
switch (egon_get_arch(params)) {
case IH_ARCH_ARM:
/* Generate an ARM branch instruction to jump over the header. */
value = 0xea000000 | (sizeof(struct boot_file_head) / 4 - 2);
header->b_instruction = cpu_to_le32(value);
break;
case IH_ARCH_RISCV:
/*
* Generate a RISC-V JAL instruction with rd=x0
* (pseudo instruction J, jump without side effects).
*
* The following weird bit operation maps imm[20]
* to inst[31], imm[10:1] to inst[30:21],
* imm[11] to inst[20], imm[19:12] to inst[19:12],
* and imm[0] is dropped (because 1-byte RISC-V instruction
* is not allowed).
*/
value = 0x0000006f |
((sizeof(struct boot_file_head) & 0x00100000) << 11) |
((sizeof(struct boot_file_head) & 0x000007fe) << 20) |
((sizeof(struct boot_file_head) & 0x00000800) << 9) |
((sizeof(struct boot_file_head) & 0x000ff000) << 0);
header->b_instruction = cpu_to_le32(value);
break;
}
memcpy(header->magic, BOOT0_MAGIC, sizeof(header->magic)); memcpy(header->magic, BOOT0_MAGIC, sizeof(header->magic));
header->check_sum = cpu_to_le32(BROM_STAMP_VALUE); header->check_sum = cpu_to_le32(BROM_STAMP_VALUE);