mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
ARC: HSDK-4xD: fix headerize script for HSDK-4xD compatibility
ARC HS CPU in HSDK-4xD has ARC ID = 0x54, so fix headerize script accordingly. Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
This commit is contained in:
parent
4b4da7ff61
commit
e31fdd8170
2 changed files with 16 additions and 8 deletions
|
@ -6,13 +6,6 @@ ifdef CONFIG_BOARD_HSDK
|
||||||
PLATFORM_CPPFLAGS += -mcpu=hs38_linux -mlittle-endian -matomic -mll64 \
|
PLATFORM_CPPFLAGS += -mcpu=hs38_linux -mlittle-endian -matomic -mll64 \
|
||||||
-mdiv-rem -mswap -mnorm -mmpy-option=9 -mbarrel-shifter \
|
-mdiv-rem -mswap -mnorm -mmpy-option=9 -mbarrel-shifter \
|
||||||
-mfpu=fpud_all
|
-mfpu=fpud_all
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef CONFIG_BOARD_HSDK_4XD
|
|
||||||
PLATFORM_CPPFLAGS += -mcpu=hs4x_rel31 -mlittle-endian -matomic -mll64 \
|
|
||||||
-mdiv-rem -mswap -mnorm -mmpy-option=9 -mbarrel-shifter \
|
|
||||||
-mfpu=fpud_all
|
|
||||||
endif
|
|
||||||
|
|
||||||
bsp-generate: u-boot u-boot.bin
|
bsp-generate: u-boot u-boot.bin
|
||||||
$(Q)python3 $(srctree)/board/$(BOARDDIR)/headerize-hsdk.py \
|
$(Q)python3 $(srctree)/board/$(BOARDDIR)/headerize-hsdk.py \
|
||||||
|
@ -21,3 +14,18 @@ bsp-generate: u-boot u-boot.bin
|
||||||
$(Q)tools/mkimage -T script -C none -n 'uboot update script' \
|
$(Q)tools/mkimage -T script -C none -n 'uboot update script' \
|
||||||
-d $(srctree)/u-boot-update.txt \
|
-d $(srctree)/u-boot-update.txt \
|
||||||
$(srctree)/u-boot-update.scr &> /dev/null
|
$(srctree)/u-boot-update.scr &> /dev/null
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifdef CONFIG_BOARD_HSDK_4XD
|
||||||
|
PLATFORM_CPPFLAGS += -mcpu=hs4x_rel31 -mlittle-endian -matomic -mll64 \
|
||||||
|
-mdiv-rem -mswap -mnorm -mmpy-option=9 -mbarrel-shifter \
|
||||||
|
-mfpu=fpud_all
|
||||||
|
|
||||||
|
bsp-generate: u-boot u-boot.bin
|
||||||
|
$(Q)python3 $(srctree)/board/$(BOARDDIR)/headerize-hsdk.py \
|
||||||
|
--arc-id 0x54 --image $(srctree)/u-boot.bin \
|
||||||
|
--elf $(srctree)/u-boot
|
||||||
|
$(Q)tools/mkimage -T script -C none -n 'uboot update script' \
|
||||||
|
-d $(srctree)/u-boot-update.txt \
|
||||||
|
$(srctree)/u-boot-update.scr &> /dev/null
|
||||||
|
endif
|
||||||
|
|
|
@ -27,7 +27,7 @@ def calc_check_sum(filename):
|
||||||
|
|
||||||
|
|
||||||
def arg_verify(uboot_bin_filename, uboot_elf_filename, arc_id):
|
def arg_verify(uboot_bin_filename, uboot_elf_filename, arc_id):
|
||||||
if arc_id not in [0x52, 0x53]:
|
if arc_id not in [0x52, 0x53, 0x54]:
|
||||||
print("unknown ARC ID: " + hex(arc_id))
|
print("unknown ARC ID: " + hex(arc_id))
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue