config.mk 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # 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. ifdef CONFIG_SPL_BUILD
  6. # Openssl is required to generate x509 certificate.
  7. # Error out if openssl is not available.
  8. ifeq ($(shell which openssl),)
  9. $(error "No openssl in $(PATH), consider installing openssl")
  10. endif
  11. SHA_VALUE= $(shell openssl dgst -sha512 -hex $(obj)/u-boot-spl.bin | sed -e "s/^.*= //g")
  12. IMAGE_SIZE= $(shell cat $(obj)/u-boot-spl.bin | wc -c)
  13. LOADADDR= $(shell echo $(CONFIG_SPL_TEXT_BASE) | sed -e "s/^0x//g")
  14. MAX_SIZE= $(shell printf "%d" $(CONFIG_SYS_K3_MAX_DOWNLODABLE_IMAGE_SIZE))
  15. # Parameters to get populated into the x509 template
  16. SED_OPTS= -e s/TEST_IMAGE_LENGTH/$(IMAGE_SIZE)/
  17. SED_OPTS+= -e s/TEST_IMAGE_SHA_VAL/$(SHA_VALUE)/
  18. SED_OPTS+= -e s/TEST_CERT_TYPE/1/ # CERT_TYPE_PRIMARY_IMAGE_BIN
  19. SED_OPTS+= -e s/TEST_BOOT_CORE/$(CONFIG_SYS_K3_BOOT_CORE_ID)/
  20. SED_OPTS+= -e s/TEST_BOOT_ARCH_WIDTH/32/
  21. SED_OPTS+= -e s/TEST_BOOT_ADDR/$(LOADADDR)/
  22. # Command to generate ecparam key
  23. quiet_cmd_genkey = OPENSSL $@
  24. cmd_genkey = openssl ecparam -out $@ -name prime256v1 -genkey
  25. # Command to generate x509 certificate
  26. quiet_cmd_gencert = OPENSSL $@
  27. cmd_gencert = cat $(srctree)/tools/k3_x509template.txt | sed $(SED_OPTS) > u-boot-spl-x509.txt; \
  28. openssl req -new -x509 -key $(KEY) -nodes -outform DER -out $@ -config u-boot-spl-x509.txt -sha512
  29. # If external key is not provided, generate key using openssl.
  30. ifeq ($(CONFIG_SYS_K3_KEY), "")
  31. KEY=u-boot-spl-eckey.pem
  32. else
  33. KEY=$(patsubst "%",%,$(CONFIG_SYS_K3_KEY))
  34. endif
  35. u-boot-spl-eckey.pem: FORCE
  36. $(call if_changed,genkey)
  37. # tiboot3.bin is mandated by ROM and ROM only supports R5 boot.
  38. # So restrict tiboot3.bin creation for CPU_V7R.
  39. ifdef CONFIG_CPU_V7R
  40. u-boot-spl-cert.bin: $(KEY) $(obj)/u-boot-spl.bin image_check FORCE
  41. $(call if_changed,gencert)
  42. image_check: $(obj)/u-boot-spl.bin FORCE
  43. @if [ $(IMAGE_SIZE) -gt $(MAX_SIZE) ]; then \
  44. echo "===============================================" >&2; \
  45. echo "ERROR: Final Image too big. " >&2; \
  46. echo "$< size = $(IMAGE_SIZE), max size = $(MAX_SIZE)" >&2; \
  47. echo "===============================================" >&2; \
  48. exit 1; \
  49. fi
  50. tiboot3.bin: u-boot-spl-cert.bin $(obj)/u-boot-spl.bin FORCE
  51. $(call if_changed,cat)
  52. ALL-y += tiboot3.bin
  53. endif
  54. ifdef CONFIG_ARM64
  55. SPL_ITS := u-boot-spl-k3.its
  56. $(SPL_ITS): FORCE
  57. $(srctree)/tools/k3_fit_atf.sh \
  58. $(patsubst %,$(obj)/dts/%.dtb,$(subst ",,$(CONFIG_SPL_OF_LIST))) > $@
  59. ALL-y += tispl.bin
  60. endif
  61. else
  62. ALL-y += u-boot.img
  63. endif