Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 1 | # Copyright (C) 2018 Marvell International Ltd. |
| 2 | # |
| 3 | # SPDX-License-Identifier: BSD-3-Clause |
| 4 | # https://spdx.org/licenses |
| 5 | |
Grzegorz Jaszczyk | 3039bce | 2019-11-05 13:14:59 +0100 | [diff] [blame] | 6 | MARVELL_PLAT_BASE := plat/marvell/armada |
| 7 | MARVELL_PLAT_INCLUDE_BASE := include/plat/marvell/armada |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 8 | |
Grzegorz Jaszczyk | 3039bce | 2019-11-05 13:14:59 +0100 | [diff] [blame] | 9 | include plat/marvell/version.mk |
| 10 | include plat/marvell/marvell.mk |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 11 | |
| 12 | VERSION_STRING +=(Marvell-${SUBVERSION}) |
| 13 | |
| 14 | SEPARATE_CODE_AND_RODATA := 1 |
| 15 | |
| 16 | # flag to switch from PLL to ARO |
| 17 | ARO_ENABLE := 0 |
| 18 | $(eval $(call add_define,ARO_ENABLE)) |
Konstantin Porotchkin | 2ef36a3 | 2019-03-31 16:58:11 +0300 | [diff] [blame] | 19 | |
| 20 | # Convert LLC to secure SRAM |
| 21 | LLC_SRAM := 0 |
| 22 | $(eval $(call add_define,LLC_SRAM)) |
| 23 | |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 24 | # Enable/Disable LLC |
| 25 | LLC_ENABLE := 1 |
| 26 | $(eval $(call add_define,LLC_ENABLE)) |
| 27 | |
Remi Pommarel | 7459e74 | 2019-07-14 20:34:28 +0200 | [diff] [blame] | 28 | include lib/xlat_tables_v2/xlat_tables.mk |
| 29 | |
Antonio Nino Diaz | 50a4d1a | 2019-02-01 12:22:22 +0000 | [diff] [blame] | 30 | PLAT_INCLUDES += -I$(MARVELL_PLAT_INCLUDE_BASE)/common \ |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 31 | -I$(MARVELL_PLAT_INCLUDE_BASE)/common/aarch64 |
| 32 | |
| 33 | |
Remi Pommarel | 7459e74 | 2019-07-14 20:34:28 +0200 | [diff] [blame] | 34 | PLAT_BL_COMMON_SOURCES += ${XLAT_TABLES_LIB_SRCS} \ |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 35 | $(MARVELL_PLAT_BASE)/common/aarch64/marvell_common.c \ |
Konstantin Porotchkin | d8e3957 | 2018-11-14 17:15:08 +0200 | [diff] [blame] | 36 | $(MARVELL_PLAT_BASE)/common/aarch64/marvell_helpers.S \ |
| 37 | $(MARVELL_COMMON_BASE)/marvell_console.c |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 38 | |
| 39 | BL1_SOURCES += drivers/delay_timer/delay_timer.c \ |
| 40 | drivers/io/io_fip.c \ |
| 41 | drivers/io/io_memmap.c \ |
| 42 | drivers/io/io_storage.c \ |
| 43 | $(MARVELL_PLAT_BASE)/common/marvell_bl1_setup.c \ |
| 44 | $(MARVELL_PLAT_BASE)/common/marvell_io_storage.c \ |
| 45 | $(MARVELL_PLAT_BASE)/common/plat_delay_timer.c |
| 46 | |
| 47 | ifdef EL3_PAYLOAD_BASE |
| 48 | # Need the arm_program_trusted_mailbox() function to release secondary CPUs from |
| 49 | # their holding pen |
| 50 | endif |
| 51 | |
| 52 | BL2_SOURCES += drivers/io/io_fip.c \ |
| 53 | drivers/io/io_memmap.c \ |
| 54 | drivers/io/io_storage.c \ |
Konstantin Porotchkin | d973c03 | 2018-10-02 17:45:15 +0300 | [diff] [blame] | 55 | common/desc_image_load.c \ |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 56 | $(MARVELL_PLAT_BASE)/common/marvell_bl2_setup.c \ |
Konstantin Porotchkin | d973c03 | 2018-10-02 17:45:15 +0300 | [diff] [blame] | 57 | $(MARVELL_PLAT_BASE)/common/marvell_io_storage.c \ |
| 58 | $(MARVELL_PLAT_BASE)/common/aarch64/marvell_bl2_mem_params_desc.c \ |
| 59 | $(MARVELL_PLAT_BASE)/common/marvell_image_load.c |
| 60 | |
Marcin Wojtas | 35b75f0 | 2019-11-13 13:31:48 +0100 | [diff] [blame] | 61 | ifeq (${SPD},opteed) |
| 62 | PLAT_INCLUDES += -Iinclude/lib |
| 63 | BL2_SOURCES += lib/optee/optee_utils.c |
| 64 | endif |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 65 | |
| 66 | BL31_SOURCES += $(MARVELL_PLAT_BASE)/common/marvell_bl31_setup.c \ |
| 67 | $(MARVELL_PLAT_BASE)/common/marvell_pm.c \ |
| 68 | $(MARVELL_PLAT_BASE)/common/marvell_topology.c \ |
| 69 | plat/common/plat_psci_common.c \ |
| 70 | $(MARVELL_PLAT_BASE)/common/plat_delay_timer.c \ |
| 71 | drivers/delay_timer/delay_timer.c |
| 72 | |
| 73 | # PSCI functionality |
| 74 | $(eval $(call add_define,CONFIG_ARM64)) |
| 75 | |
Marcin Wojtas | 35b75f0 | 2019-11-13 13:31:48 +0100 | [diff] [blame] | 76 | # Add the build options to pack Trusted OS Extra1 and Trusted OS Extra2 images |
| 77 | # in the FIP if the platform requires. |
| 78 | ifneq ($(BL32_EXTRA1),) |
| 79 | $(eval $(call TOOL_ADD_IMG,bl32_extra1,--tos-fw-extra1)) |
| 80 | endif |
| 81 | ifneq ($(BL32_EXTRA2),) |
| 82 | $(eval $(call TOOL_ADD_IMG,bl32_extra2,--tos-fw-extra2)) |
| 83 | endif |
| 84 | |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 85 | # MSS (SCP) build |
| 86 | ifeq (${MSS_SUPPORT}, 1) |
| 87 | include $(MARVELL_PLAT_BASE)/common/mss/mss_common.mk |
| 88 | endif |
| 89 | |
| 90 | fip: mrvl_flash |