Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 1 | # |
Marcin Wojtas | a86fe0c | 2020-06-02 15:12:06 +0200 | [diff] [blame] | 2 | # Copyright (C) 2016 - 2020 Marvell International Ltd. |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # https://spdx.org/licenses |
| 6 | |
Konstantin Porotchkin | 6ff50d5 | 2018-10-07 17:54:20 +0300 | [diff] [blame] | 7 | include tools/marvell/doimage/doimage.mk |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 8 | |
| 9 | PLAT_FAMILY := a8k |
| 10 | PLAT_FAMILY_BASE := plat/marvell/$(PLAT_FAMILY) |
| 11 | PLAT_INCLUDE_BASE := include/plat/marvell/$(PLAT_FAMILY) |
| 12 | PLAT_COMMON_BASE := $(PLAT_FAMILY_BASE)/common |
| 13 | MARVELL_DRV_BASE := drivers/marvell |
| 14 | MARVELL_COMMON_BASE := plat/marvell/common |
| 15 | |
Konstantin Porotchkin | f51f251 | 2018-11-06 12:25:38 +0200 | [diff] [blame] | 16 | MARVELL_SVC_TEST := 0 |
| 17 | $(eval $(call add_define,MARVELL_SVC_TEST)) |
| 18 | |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 19 | ERRATA_A72_859971 := 1 |
| 20 | |
| 21 | # Enable MSS support for a8k family |
| 22 | MSS_SUPPORT := 1 |
| 23 | |
| 24 | # Disable EL3 cache for power management |
Marcin Wojtas | a86fe0c | 2020-06-02 15:12:06 +0200 | [diff] [blame] | 25 | BL31_CACHE_DISABLE := 0 |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 26 | $(eval $(call add_define,BL31_CACHE_DISABLE)) |
| 27 | |
| 28 | $(eval $(call add_define,PCI_EP_SUPPORT)) |
| 29 | $(eval $(call assert_boolean,PCI_EP_SUPPORT)) |
| 30 | |
Grzegorz Jaszczyk | 2ed16f5 | 2018-06-29 18:00:33 +0200 | [diff] [blame] | 31 | AP_NUM := 1 |
| 32 | $(eval $(call add_define,AP_NUM)) |
| 33 | |
Konstantin Porotchkin | 6ff50d5 | 2018-10-07 17:54:20 +0300 | [diff] [blame] | 34 | DOIMAGEPATH ?= tools/marvell/doimage |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 35 | DOIMAGETOOL ?= ${DOIMAGEPATH}/doimage |
| 36 | |
| 37 | ROM_BIN_EXT ?= $(BUILD_PLAT)/ble.bin |
| 38 | DOIMAGE_FLAGS += -b $(ROM_BIN_EXT) $(NAND_DOIMAGE_FLAGS) $(DOIMAGE_SEC_FLAGS) |
| 39 | |
Luka Kovacic | 49358fb | 2020-01-13 20:37:35 +0100 | [diff] [blame] | 40 | # Check whether to build system_power.c for the platform |
| 41 | ifneq ("$(wildcard $(PLAT_FAMILY_BASE)/$(PLAT)/board/system_power.c)","") |
| 42 | SYSTEM_POWER_SUPPORT = 1 |
| 43 | else |
| 44 | SYSTEM_POWER_SUPPORT = 0 |
| 45 | endif |
| 46 | |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 47 | # This define specifies DDR type for BLE |
| 48 | $(eval $(call add_define,CONFIG_DDR4)) |
| 49 | |
| 50 | MARVELL_GIC_SOURCES := drivers/arm/gic/common/gic_common.c \ |
| 51 | drivers/arm/gic/v2/gicv2_main.c \ |
| 52 | drivers/arm/gic/v2/gicv2_helpers.c \ |
| 53 | plat/common/plat_gicv2.c |
| 54 | |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 55 | PLAT_INCLUDES := -I$(PLAT_FAMILY_BASE)/$(PLAT) \ |
| 56 | -I$(PLAT_COMMON_BASE)/include \ |
Antonio Nino Diaz | 50a4d1a | 2019-02-01 12:22:22 +0000 | [diff] [blame] | 57 | -I$(PLAT_INCLUDE_BASE)/common |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 58 | |
| 59 | PLAT_BL_COMMON_SOURCES := $(PLAT_COMMON_BASE)/aarch64/a8k_common.c \ |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 60 | drivers/ti/uart/aarch64/16550_console.S |
| 61 | |
| 62 | BLE_PORTING_SOURCES := $(PLAT_FAMILY_BASE)/$(PLAT)/board/dram_port.c \ |
| 63 | $(PLAT_FAMILY_BASE)/$(PLAT)/board/marvell_plat_config.c |
| 64 | |
| 65 | MARVELL_MOCHI_DRV += $(MARVELL_DRV_BASE)/mochi/cp110_setup.c |
| 66 | |
Christine Gharzuzi | 9a772df | 2018-06-25 13:39:37 +0300 | [diff] [blame] | 67 | BLE_SOURCES := drivers/mentor/i2c/mi2cv.c \ |
| 68 | $(PLAT_COMMON_BASE)/plat_ble_setup.c \ |
| 69 | $(MARVELL_MOCHI_DRV) \ |
| 70 | $(PLAT_COMMON_BASE)/plat_pm.c \ |
| 71 | $(MARVELL_DRV_BASE)/ap807_clocks_init.c \ |
| 72 | $(MARVELL_DRV_BASE)/thermal.c \ |
| 73 | $(PLAT_COMMON_BASE)/plat_thermal.c \ |
| 74 | $(BLE_PORTING_SOURCES) \ |
| 75 | $(MARVELL_DRV_BASE)/ccu.c \ |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 76 | $(MARVELL_DRV_BASE)/io_win.c |
| 77 | |
| 78 | BL1_SOURCES += $(PLAT_COMMON_BASE)/aarch64/plat_helpers.S \ |
| 79 | lib/cpus/aarch64/cortex_a72.S |
| 80 | |
| 81 | MARVELL_DRV := $(MARVELL_DRV_BASE)/io_win.c \ |
| 82 | $(MARVELL_DRV_BASE)/iob.c \ |
| 83 | $(MARVELL_DRV_BASE)/mci.c \ |
| 84 | $(MARVELL_DRV_BASE)/amb_adec.c \ |
| 85 | $(MARVELL_DRV_BASE)/ccu.c \ |
| 86 | $(MARVELL_DRV_BASE)/cache_llc.c \ |
Grzegorz Jaszczyk | f47d855 | 2018-06-13 16:00:48 +0200 | [diff] [blame] | 87 | $(MARVELL_DRV_BASE)/comphy/phy-comphy-cp110.c \ |
| 88 | $(MARVELL_DRV_BASE)/mc_trustzone/mc_trustzone.c |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 89 | |
| 90 | BL31_PORTING_SOURCES := $(PLAT_FAMILY_BASE)/$(PLAT)/board/marvell_plat_config.c |
| 91 | |
Luka Kovacic | 49358fb | 2020-01-13 20:37:35 +0100 | [diff] [blame] | 92 | ifeq ($(SYSTEM_POWER_SUPPORT),1) |
| 93 | BL31_PORTING_SOURCES += $(PLAT_FAMILY_BASE)/$(PLAT)/board/system_power.c |
| 94 | endif |
| 95 | |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 96 | BL31_SOURCES += lib/cpus/aarch64/cortex_a72.S \ |
| 97 | $(PLAT_COMMON_BASE)/aarch64/plat_helpers.S \ |
| 98 | $(PLAT_COMMON_BASE)/aarch64/plat_arch_config.c \ |
| 99 | $(PLAT_COMMON_BASE)/plat_pm.c \ |
| 100 | $(PLAT_COMMON_BASE)/plat_bl31_setup.c \ |
| 101 | $(MARVELL_COMMON_BASE)/marvell_gicv2.c \ |
| 102 | $(MARVELL_COMMON_BASE)/mrvl_sip_svc.c \ |
| 103 | $(MARVELL_COMMON_BASE)/marvell_ddr_info.c \ |
| 104 | $(BL31_PORTING_SOURCES) \ |
| 105 | $(MARVELL_DRV) \ |
| 106 | $(MARVELL_MOCHI_DRV) \ |
| 107 | $(MARVELL_GIC_SOURCES) |
| 108 | |
| 109 | # Add trace functionality for PM |
| 110 | BL31_SOURCES += $(PLAT_COMMON_BASE)/plat_pm_trace.c |
| 111 | |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 112 | # Force builds with BL2 image on a80x0 platforms |
| 113 | ifndef SCP_BL2 |
| 114 | $(error "Error: SCP_BL2 image is mandatory for a8k family") |
| 115 | endif |
| 116 | |
| 117 | # MSS (SCP) build |
| 118 | include $(PLAT_COMMON_BASE)/mss/mss_a8k.mk |
| 119 | |
| 120 | # BLE (ROM context execution code, AKA binary extension) |
Konstantin Porotchkin | 01851db | 2018-10-03 14:21:42 +0300 | [diff] [blame] | 121 | BLE_PATH ?= $(PLAT_COMMON_BASE)/ble |
Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 122 | |
| 123 | include ${BLE_PATH}/ble.mk |
| 124 | $(eval $(call MAKE_BL,e)) |
| 125 | |
| 126 | mrvl_flash: ${BUILD_PLAT}/${FIP_NAME} ${DOIMAGETOOL} ${BUILD_PLAT}/ble.bin |
| 127 | $(shell truncate -s %128K ${BUILD_PLAT}/bl1.bin) |
| 128 | $(shell cat ${BUILD_PLAT}/bl1.bin ${BUILD_PLAT}/${FIP_NAME} > ${BUILD_PLAT}/${BOOT_IMAGE}) |
| 129 | ${DOIMAGETOOL} ${DOIMAGE_FLAGS} ${BUILD_PLAT}/${BOOT_IMAGE} ${BUILD_PLAT}/${FLASH_IMAGE} |
| 130 | |