2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2011-11-08 23:18:08 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2006
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
|
2013-10-17 08:34:49 +00:00
|
|
|
extra-$(CONFIG_SPL_BUILD) := start.o
|
2011-11-08 23:18:08 +00:00
|
|
|
|
2013-10-17 08:34:49 +00:00
|
|
|
obj-y = clock.o mxs.o iomux.o timer.o
|
2011-11-08 23:18:08 +00:00
|
|
|
|
2011-12-02 03:47:40 +00:00
|
|
|
ifdef CONFIG_SPL_BUILD
|
2013-10-17 08:34:49 +00:00
|
|
|
obj-y += spl_boot.o spl_lradc_init.o spl_mem_init.o spl_power_init.o
|
2011-12-02 03:47:40 +00:00
|
|
|
endif
|
|
|
|
|
2013-04-28 14:18:49 +00:00
|
|
|
# Specify the target for use in elftosb call
|
2018-04-21 15:11:10 +00:00
|
|
|
MKIMAGE_TARGET-$(CONFIG_MX23) = mxsimage$(CONFIG_SPL_FRAMEWORK:%=-spl).mx23.cfg
|
|
|
|
MKIMAGE_TARGET-$(CONFIG_MX28) = mxsimage$(CONFIG_SPL_FRAMEWORK:%=-spl).mx28.cfg
|
2013-04-28 14:18:49 +00:00
|
|
|
|
arm: mxs: Add support for generating signed BootStream
This patch adds the groundwork for generating signed BootStream, which
can be used by the HAB library in i.MX28. We are adding a new target,
u-boot-signed.sb , since the process for generating regular non-signed
BootStream is much easier. Moreover, the signed bootstream depends on
external _proprietary_ _binary-only_ tool from Freescale called 'cst',
which is available only under NDA.
To make things even uglier, the CST or HAB mandates a kind-of circular
dependency. The problem is, unlike the regular IVT, which is generated
by mxsimage, the IVT for signed boot must be generated by hand here due
to special demands of the CST. The U-Boot binary (or SPL binary) and IVT
are then signed by the CST as a one block. But here is the problem. The
size of the entire image (U-Boot, IVT, CST blocks) must be appended at
the end of IVT. But the size of the entire image is not known until the
CST has finished signing the U-Boot and IVT. We solve this by expecting
the CST block to be always 3904B (which it is in case two files, U-Boot
and the hand-made IVT, are signed in the CST block).
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
2014-04-03 17:12:21 +00:00
|
|
|
# Generate HAB-capable IVT
|
|
|
|
#
|
|
|
|
# Note on computing the post-IVT size field value for the U-Boot binary.
|
|
|
|
# The value is the result of adding the following:
|
|
|
|
# -> The size of U-Boot binary aligned to 64B (u-boot.bin)
|
|
|
|
# -> The size of IVT block aligned to 64B (u-boot.ivt)
|
|
|
|
# -> The size of U-Boot signature (u-boot.sig), 3904 B
|
|
|
|
# -> The 64B hole in front of U-Boot binary for 'struct mxs_spl_data' passing
|
|
|
|
#
|
|
|
|
quiet_cmd_mkivt_mxs = MXSIVT $@
|
|
|
|
cmd_mkivt_mxs = \
|
|
|
|
sz=`expr \`stat -c "%s" $^\` + 64 + 3904 + 128` ; \
|
|
|
|
echo -n "0x402000d1 $2 0 0 0 $3 $4 0 $$sz 0 0 0 0 0 0 0" | \
|
|
|
|
tr -s " " | xargs -d " " -i printf "%08x\n" "{}" | rev | \
|
|
|
|
sed "s/\(.\)\(.\)/\\\\\\\\x\2\1\n/g" | xargs -i printf "{}" >$@
|
|
|
|
|
|
|
|
# Align binary to 64B
|
|
|
|
quiet_cmd_mkalign_mxs = MXSALGN $@
|
|
|
|
cmd_mkalign_mxs = \
|
|
|
|
dd if=$^ of=$@ ibs=64 conv=sync 2>/dev/null && \
|
|
|
|
mv $@ $^
|
|
|
|
|
|
|
|
# Assemble the CSF file
|
|
|
|
quiet_cmd_mkcsfreq_mxs = MXSCSFR $@
|
|
|
|
cmd_mkcsfreq_mxs = \
|
|
|
|
ivt=$(word 1,$^) ; \
|
|
|
|
bin=$(word 2,$^) ; \
|
|
|
|
csf=$(word 3,$^) ; \
|
|
|
|
sed "s@VENDOR@$(VENDOR)@g;s@BOARD@$(BOARD)@g" "$$csf" | \
|
|
|
|
sed '/^\#\#Blocks/ d' > $@ ; \
|
|
|
|
echo " Blocks = $2 0x0 `stat -c '%s' $$bin` \"$$bin\" , \\" >> $@ ; \
|
|
|
|
echo " $3 0x0 0x40 \"$$ivt\"" >> $@
|
|
|
|
|
|
|
|
# Sign files
|
|
|
|
quiet_cmd_mkcst_mxs = MXSCST $@
|
|
|
|
cmd_mkcst_mxs = cst -o $@ < $^ \
|
|
|
|
$(if $(KBUILD_VERBOSE:1=), >/dev/null)
|
|
|
|
|
|
|
|
spl/u-boot-spl.ivt: spl/u-boot-spl.bin
|
|
|
|
$(call if_changed,mkalign_mxs)
|
|
|
|
$(call if_changed,mkivt_mxs,$(CONFIG_SPL_TEXT_BASE),\
|
|
|
|
0x00008000,0x00008040)
|
|
|
|
|
|
|
|
u-boot.ivt: u-boot.bin
|
|
|
|
$(call if_changed,mkalign_mxs)
|
|
|
|
$(call if_changed,mkivt_mxs,$(CONFIG_SYS_TEXT_BASE),\
|
|
|
|
0x40001000,0x40001040)
|
|
|
|
|
|
|
|
spl/u-boot-spl.csf: spl/u-boot-spl.ivt spl/u-boot-spl.bin board/$(VENDOR)/$(BOARD)/sign/u-boot-spl.csf
|
|
|
|
$(call if_changed,mkcsfreq_mxs,$(CONFIG_SPL_TEXT_BASE),0x8000)
|
|
|
|
|
|
|
|
u-boot.csf: u-boot.ivt u-boot.bin board/$(VENDOR)/$(BOARD)/sign/u-boot.csf
|
|
|
|
$(call if_changed,mkcsfreq_mxs,$(CONFIG_SYS_TEXT_BASE),0x40001000)
|
|
|
|
|
|
|
|
%.sig: %.csf
|
|
|
|
$(call if_changed,mkcst_mxs)
|
|
|
|
|
2015-08-11 01:08:07 +00:00
|
|
|
MKIMAGEFLAGS_u-boot.sb = -n $< -T mxsimage
|
2014-03-11 02:05:11 +00:00
|
|
|
u-boot.sb: $(src)/$(MKIMAGE_TARGET-y) u-boot.bin spl/u-boot-spl.bin FORCE
|
2015-08-11 01:08:07 +00:00
|
|
|
$(call if_changed,mkimage)
|
arm: mxs: Add support for generating signed BootStream
This patch adds the groundwork for generating signed BootStream, which
can be used by the HAB library in i.MX28. We are adding a new target,
u-boot-signed.sb , since the process for generating regular non-signed
BootStream is much easier. Moreover, the signed bootstream depends on
external _proprietary_ _binary-only_ tool from Freescale called 'cst',
which is available only under NDA.
To make things even uglier, the CST or HAB mandates a kind-of circular
dependency. The problem is, unlike the regular IVT, which is generated
by mxsimage, the IVT for signed boot must be generated by hand here due
to special demands of the CST. The U-Boot binary (or SPL binary) and IVT
are then signed by the CST as a one block. But here is the problem. The
size of the entire image (U-Boot, IVT, CST blocks) must be appended at
the end of IVT. But the size of the entire image is not known until the
CST has finished signing the U-Boot and IVT. We solve this by expecting
the CST block to be always 3904B (which it is in case two files, U-Boot
and the hand-made IVT, are signed in the CST block).
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
2014-04-03 17:12:21 +00:00
|
|
|
|
2015-08-11 01:08:07 +00:00
|
|
|
MKIMAGEFLAGS_u-boot-signed.sb = -n $< -T mxsimage
|
arm: mxs: Add support for generating signed BootStream
This patch adds the groundwork for generating signed BootStream, which
can be used by the HAB library in i.MX28. We are adding a new target,
u-boot-signed.sb , since the process for generating regular non-signed
BootStream is much easier. Moreover, the signed bootstream depends on
external _proprietary_ _binary-only_ tool from Freescale called 'cst',
which is available only under NDA.
To make things even uglier, the CST or HAB mandates a kind-of circular
dependency. The problem is, unlike the regular IVT, which is generated
by mxsimage, the IVT for signed boot must be generated by hand here due
to special demands of the CST. The U-Boot binary (or SPL binary) and IVT
are then signed by the CST as a one block. But here is the problem. The
size of the entire image (U-Boot, IVT, CST blocks) must be appended at
the end of IVT. But the size of the entire image is not known until the
CST has finished signing the U-Boot and IVT. We solve this by expecting
the CST block to be always 3904B (which it is in case two files, U-Boot
and the hand-made IVT, are signed in the CST block).
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
2014-04-03 17:12:21 +00:00
|
|
|
u-boot-signed.sb: $(src)/mxsimage-signed.cfg u-boot.ivt u-boot.sig spl/u-boot-spl.ivt spl/u-boot-spl.sig FORCE
|
2015-08-11 01:08:07 +00:00
|
|
|
$(call if_changed,mkimage)
|