Skip to content

Commit

Permalink
tools/imx9: add support for norimages
Browse files Browse the repository at this point in the history
fetch fspi header and fcb generation script,
using mkimage generate nor bootable image.

Signed-off-by: Jouni Ukkonen <[email protected]>
  • Loading branch information
joukkone committed Jul 29, 2024
1 parent 4b517db commit 5abb056
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,4 @@ tools/gdb/__pycache__
.ccls-cache
compile_commands.json
imx9-sdimage.img
imx9-norimage.img
20 changes: 20 additions & 0 deletions tools/imx9/Config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

ifeq ($(CONFIG_IMX9_BOOTLOADER),y)
MK_BASE_URL = https://raw.githubusercontent.com/nxp-imx/imx-mkimage/cbb99377cc2bb8f7cf213794c030e1c60423ef1f/src
MK_SCRIPTS_URL = https://raw.githubusercontent.com/nxp-imx/imx-mkimage/cbb99377cc2bb8f7cf213794c030e1c60423ef1f/scripts
BASE_PATH = $(TOPDIR)$(DELIM)tools$(DELIM)imx9$(DELIM)
FILE_1 = imx8qxb0.c
FILE_1_PATH = $(BASE_PATH)$(FILE_1)
Expand All @@ -38,11 +39,17 @@ ifeq ($(CONFIG_IMX9_BOOTLOADER),y)
AHAB = firmware-ele-imx-0.1.1
AHAB_BINARY = $(AHAB).bin
AHAB_PATH = $(BASE_PATH)$(AHAB_BINARY)
FSPI_HEADER = fspi_header
FSPI_HEADER_PATH = $(BASE_PATH)$(FSPI_HEADER)
FCB_TOOL = fspi_fcb_gen.sh
FCB_TOOL_PATH = $(BASE_PATH)$(FCB_TOOL)

define DOWNLOAD_FILES
$(call DOWNLOAD,$(MK_BASE_URL),$(FILE_1),$(FILE_1_PATH))
$(call DOWNLOAD,$(MK_BASE_URL),$(FILE_2),$(FILE_2_PATH))
$(call DOWNLOAD,$(MK_BASE_URL),$(FILE_3),$(FILE_3_PATH))
$(call DOWNLOAD,$(MK_SCRIPTS_URL),$(FSPI_HEADER),$(FSPI_HEADER_PATH))
$(call DOWNLOAD,$(MK_SCRIPTS_URL),$(FCB_TOOL),$(FCB_TOOL_PATH))
$(call DOWNLOAD,$(AHAB_BASE_URL),$(AHAB_BINARY),$(AHAB_PATH))
$(Q) chmod a+x $(BASE_PATH)$(AHAB_BINARY)
$(Q) (cd $(BASE_PATH) && ./$(AHAB_BINARY) --auto-accept)
Expand All @@ -69,6 +76,19 @@ define POSTBUILD
$(Q) rm flash.bin
$(Q) echo "imx9-sdimage.img" >> nuttx.manifest
$(Q) echo "Created imx9-sdimage.img"

$(Q) tools$(DELIM)imx9$(DELIM)mkimage_imx9$(HOSTEXEEXT) -soc IMX9 -dev flexspi -append $(BASE_PATH)$(AHAB)$(DELIM)mx93a1-ahab-container.img -c -ap nuttx.bin a55 0x2049a000 -fcb fcb.bin 0x204F0000 -out flash.bin 1>/dev/null 2>&1
$(Q) mv flash.bin flash.tmp
$(Q) sh tools$(DELIM)imx9$(DELIM)fspi_fcb_gen.sh tools$(DELIM)imx9$(DELIM)/fspi_header

$(Q) dd if=fcb.bin of=flash.bin bs=1k seek=1
$(Q) dd if=flash.tmp of=flash.bin bs=1k seek=4
$(Q) rm flash.tmp
$(Q) echo "Append FCB to flash.bin"
$(Q) cp flash.bin imx9-norimage.img
$(Q) rm flash.bin
$(Q) echo "imx9-norimage.img" >> nuttx.manifest
$(Q) echo "Created imx9-norimage.img"
$(Q) $(MAKE) -C $(TOPDIR)$(DELIM)tools$(DELIM)imx9 -f Makefile.host clean
endef
endif
2 changes: 2 additions & 0 deletions tools/imx9/Makefile.host
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ endif
$(call DELFILE, imx8qxb0.c)
$(call DELFILE, mkimage_common.h)
$(call DELFILE, build_info.h)
$(call DELFILE, fspi_fcb_gen.sh)
$(call DELFILE, fspi_header)
$(call DELFILE, firmware-ele-imx-0.1.1.bin)
$(call DELDIR, firmware-ele-imx-0.1.1)
$(call CLEAN)

0 comments on commit 5abb056

Please sign in to comment.