Loh Tien Hock | 59400a4 | 2019-02-04 16:17:24 +0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2019, ARM Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | PLAT_INCLUDES := \ |
| 8 | -Iplat/intel/soc/stratix10/ \ |
| 9 | -Iplat/intel/soc/stratix10/include/ \ |
| 10 | |
| 11 | PLAT_BL_COMMON_SOURCES := \ |
| 12 | lib/xlat_tables/xlat_tables_common.c \ |
| 13 | lib/xlat_tables/aarch64/xlat_tables.c \ |
| 14 | drivers/arm/gic/common/gic_common.c \ |
| 15 | drivers/arm/gic/v2/gicv2_main.c \ |
| 16 | drivers/arm/gic/v2/gicv2_helpers.c \ |
| 17 | plat/common/plat_gicv2.c \ |
| 18 | drivers/delay_timer/delay_timer.c \ |
| 19 | drivers/delay_timer/generic_delay_timer.c \ |
| 20 | drivers/ti/uart/aarch64/16550_console.S \ |
| 21 | plat/intel/soc/stratix10/aarch64/platform_common.c \ |
| 22 | plat/intel/soc/stratix10/aarch64/plat_helpers.S \ |
| 23 | |
| 24 | BL2_SOURCES += \ |
| 25 | drivers/partition/partition.c \ |
| 26 | drivers/partition/gpt.c \ |
| 27 | drivers/arm/pl061/pl061_gpio.c \ |
| 28 | drivers/mmc/mmc.c \ |
| 29 | drivers/synopsys/emmc/dw_mmc.c \ |
| 30 | drivers/io/io_storage.c \ |
| 31 | drivers/io/io_block.c \ |
| 32 | drivers/io/io_fip.c \ |
| 33 | drivers/gpio/gpio.c \ |
Muhammad Hadi Asyrafi Abdul Halim | 2444bfa | 2019-03-08 19:02:33 +0800 | [diff] [blame] | 34 | drivers/intel/soc/stratix10/io/s10_memmap_qspi.c \ |
Loh Tien Hock | 59400a4 | 2019-02-04 16:17:24 +0800 | [diff] [blame] | 35 | plat/intel/soc/stratix10/bl2_plat_setup.c \ |
| 36 | plat/intel/soc/stratix10/plat_storage.c \ |
| 37 | plat/intel/soc/stratix10/bl2_plat_mem_params_desc.c \ |
| 38 | plat/intel/soc/stratix10/soc/s10_reset_manager.c \ |
| 39 | plat/intel/soc/stratix10/soc/s10_handoff.c \ |
| 40 | plat/intel/soc/stratix10/soc/s10_clock_manager.c \ |
| 41 | plat/intel/soc/stratix10/soc/s10_pinmux.c \ |
| 42 | plat/intel/soc/stratix10/soc/s10_memory_controller.c \ |
| 43 | plat/intel/soc/stratix10/plat_delay_timer.c \ |
| 44 | lib/cpus/aarch64/cortex_a53.S \ |
| 45 | plat/intel/soc/stratix10/stratix10_image_load.c \ |
| 46 | plat/intel/soc/stratix10/soc/s10_system_manager.c \ |
Muhammad Hadi Asyrafi Abdul Halim | 2444bfa | 2019-03-08 19:02:33 +0800 | [diff] [blame] | 47 | common/desc_image_load.c \ |
| 48 | plat/intel/soc/stratix10/soc/s10_mailbox.c \ |
Muhammad Hadi Asyrafi Abdul Halim | c0d4d93 | 2019-03-19 17:59:06 +0800 | [diff] [blame] | 49 | plat/intel/soc/stratix10/drivers/qspi/cadence_qspi.c \ |
| 50 | plat/intel/soc/stratix10/drivers/wdt/watchdog.c |
Loh Tien Hock | 59400a4 | 2019-02-04 16:17:24 +0800 | [diff] [blame] | 51 | |
Tien Hock, Loh | ab34f74 | 2019-02-26 09:25:14 +0800 | [diff] [blame] | 52 | BL31_SOURCES += drivers/arm/cci/cci.c \ |
| 53 | lib/cpus/aarch64/cortex_a53.S \ |
| 54 | lib/cpus/aarch64/aem_generic.S \ |
| 55 | lib/cpus/aarch64/cortex_a53.S \ |
| 56 | plat/common/plat_psci_common.c \ |
| 57 | plat/intel/soc/stratix10/plat_sip_svc.c \ |
| 58 | plat/intel/soc/stratix10/bl31_plat_setup.c \ |
| 59 | plat/intel/soc/stratix10/plat_psci.c \ |
| 60 | plat/intel/soc/stratix10/plat_topology.c \ |
| 61 | plat/intel/soc/stratix10/plat_delay_timer.c \ |
| 62 | plat/intel/soc/stratix10/soc/s10_reset_manager.c\ |
| 63 | plat/intel/soc/stratix10/soc/s10_pinmux.c \ |
| 64 | plat/intel/soc/stratix10/soc/s10_clock_manager.c\ |
| 65 | plat/intel/soc/stratix10/soc/s10_handoff.c \ |
| 66 | plat/intel/soc/stratix10/soc/s10_mailbox.c \ |
Loh Tien Hock | 59400a4 | 2019-02-04 16:17:24 +0800 | [diff] [blame] | 67 | |
| 68 | PROGRAMMABLE_RESET_ADDRESS := 0 |
| 69 | BL2_AT_EL3 := 1 |
| 70 | MULTI_CONSOLE_API := 1 |
Tien Hock, Loh | ab34f74 | 2019-02-26 09:25:14 +0800 | [diff] [blame] | 71 | USE_COHERENT_MEM := 1 |