blob: f6b63db34978e7eca766085823773f2dc2282c92 [file] [log] [blame]
Lokesh Vutla82f29fd2018-08-27 15:57:15 +05301# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright (C) 2017-2018 Texas Instruments Incorporated - http://www.ti.com/
4# Lokesh Vutla <lokeshvutla@ti.com>
5
6ifdef CONFIG_SPL_BUILD
7
Lokesh Vutla890b2e72018-11-02 19:51:04 +05308# Openssl is required to generate x509 certificate.
9# Error out if openssl is not available.
10ifeq ($(shell which openssl),)
11$(error "No openssl in $(PATH), consider installing openssl")
12endif
13
Lokesh Vutla890b2e72018-11-02 19:51:04 +053014IMAGE_SIZE= $(shell cat $(obj)/u-boot-spl.bin | wc -c)
Lokesh Vutla890b2e72018-11-02 19:51:04 +053015MAX_SIZE= $(shell printf "%d" $(CONFIG_SYS_K3_MAX_DOWNLODABLE_IMAGE_SIZE))
16
Lokesh Vutla890b2e72018-11-02 19:51:04 +053017ifeq ($(CONFIG_SYS_K3_KEY), "")
Lokesh Vutlaa3257962019-05-02 15:35:51 +053018KEY=""
Andrew F. Davis50836962019-04-12 12:54:46 -040019# On HS use real key or warn if not available
20ifeq ($(CONFIG_TI_SECURE_DEVICE),y)
21ifneq ($(wildcard $(TI_SECURE_DEV_PKG)/keys/custMpk.pem),)
22KEY=$(TI_SECURE_DEV_PKG)/keys/custMpk.pem
23else
24$(warning "WARNING: signing key not found. Random key will NOT work on HS hardware!")
25endif
26endif
Lokesh Vutla890b2e72018-11-02 19:51:04 +053027else
Lokesh Vutlaadc702e2018-12-19 12:53:31 +053028KEY=$(patsubst "%",$(srctree)/%,$(CONFIG_SYS_K3_KEY))
Lokesh Vutla890b2e72018-11-02 19:51:04 +053029endif
30
Lokesh Vutla890b2e72018-11-02 19:51:04 +053031# tiboot3.bin is mandated by ROM and ROM only supports R5 boot.
32# So restrict tiboot3.bin creation for CPU_V7R.
33ifdef CONFIG_CPU_V7R
Lokesh Vutla890b2e72018-11-02 19:51:04 +053034image_check: $(obj)/u-boot-spl.bin FORCE
35 @if [ $(IMAGE_SIZE) -gt $(MAX_SIZE) ]; then \
36 echo "===============================================" >&2; \
37 echo "ERROR: Final Image too big. " >&2; \
38 echo "$< size = $(IMAGE_SIZE), max size = $(MAX_SIZE)" >&2; \
39 echo "===============================================" >&2; \
40 exit 1; \
41 fi
42
Lokesh Vutlaa3257962019-05-02 15:35:51 +053043tiboot3.bin: image_check FORCE
44 $(srctree)/tools/k3_gen_x509_cert.sh -c 16 -b $(obj)/u-boot-spl.bin \
45 -o $@ -l $(CONFIG_SPL_TEXT_BASE) -k $(KEY)
Lokesh Vutla890b2e72018-11-02 19:51:04 +053046
47ALL-y += tiboot3.bin
48endif
49
Lokesh Vutla82f29fd2018-08-27 15:57:15 +053050ifdef CONFIG_ARM64
Andrew F. Davis50836962019-04-12 12:54:46 -040051ifeq ($(CONFIG_TI_SECURE_DEVICE),y)
52SPL_ITS := u-boot-spl-k3_HS.its
53$(SPL_ITS): FORCE
54 IS_HS=1 \
55 $(srctree)/tools/k3_fit_atf.sh \
56 $(patsubst %,$(obj)/dts/%.dtb,$(subst ",,$(CONFIG_SPL_OF_LIST))) > $@
57
58ALL-y += tispl.bin_HS
59else
Lokesh Vutla82f29fd2018-08-27 15:57:15 +053060SPL_ITS := u-boot-spl-k3.its
61$(SPL_ITS): FORCE
62 $(srctree)/tools/k3_fit_atf.sh \
63 $(patsubst %,$(obj)/dts/%.dtb,$(subst ",,$(CONFIG_SPL_OF_LIST))) > $@
64
65ALL-y += tispl.bin
66endif
Andrew F. Davis50836962019-04-12 12:54:46 -040067endif
Lokesh Vutla82f29fd2018-08-27 15:57:15 +053068
69else
Andrew F. Davis50836962019-04-12 12:54:46 -040070
71ifeq ($(CONFIG_TI_SECURE_DEVICE),y)
72ALL-y += u-boot.img_HS
73else
Lokesh Vutla82f29fd2018-08-27 15:57:15 +053074ALL-y += u-boot.img
75endif
Andrew F. Davis50836962019-04-12 12:54:46 -040076endif
77
78include $(srctree)/arch/arm/mach-k3/config_secure.mk