Hadi Asyrafi | 616da77 | 2019-06-27 11:34:03 +0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2019, ARM Limited and Contributors. All rights reserved. |
| 3 | # Copyright (c) 2019, Intel Corporation. All rights reserved. |
| 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | # |
| 8 | PLAT_INCLUDES := \ |
| 9 | -Iplat/intel/soc/agilex/include/ \ |
| 10 | -Iplat/intel/soc/common/drivers/ |
| 11 | |
| 12 | PLAT_BL_COMMON_SOURCES := \ |
| 13 | drivers/arm/gic/common/gic_common.c \ |
| 14 | drivers/arm/gic/v2/gicv2_main.c \ |
| 15 | drivers/arm/gic/v2/gicv2_helpers.c \ |
| 16 | drivers/delay_timer/delay_timer.c \ |
| 17 | drivers/delay_timer/generic_delay_timer.c \ |
| 18 | drivers/ti/uart/aarch64/16550_console.S \ |
| 19 | lib/xlat_tables/aarch64/xlat_tables.c \ |
| 20 | lib/xlat_tables/xlat_tables_common.c \ |
| 21 | plat/common/plat_gicv2.c \ |
| 22 | plat/intel/soc/agilex/aarch64/platform_common.c \ |
| 23 | plat/intel/soc/agilex/aarch64/plat_helpers.S \ |
| 24 | |
| 25 | BL2_SOURCES += \ |
| 26 | common/desc_image_load.c \ |
| 27 | drivers/partition/partition.c \ |
| 28 | drivers/partition/gpt.c \ |
| 29 | drivers/arm/pl061/pl061_gpio.c \ |
| 30 | drivers/mmc/mmc.c \ |
| 31 | drivers/synopsys/emmc/dw_mmc.c \ |
| 32 | drivers/io/io_storage.c \ |
| 33 | drivers/io/io_block.c \ |
| 34 | drivers/io/io_fip.c \ |
| 35 | drivers/gpio/gpio.c \ |
| 36 | drivers/intel/soc/stratix10/io/s10_memmap_qspi.c \ |
| 37 | lib/cpus/aarch64/cortex_a53.S \ |
| 38 | plat/intel/soc/agilex/bl2_plat_setup.c \ |
| 39 | plat/intel/soc/agilex/socfpga_storage.c \ |
| 40 | plat/intel/soc/agilex/bl2_plat_mem_params_desc.c \ |
| 41 | plat/intel/soc/agilex/soc/agilex_reset_manager.c \ |
| 42 | plat/intel/soc/agilex/soc/agilex_handoff.c \ |
| 43 | plat/intel/soc/agilex/soc/agilex_clock_manager.c \ |
| 44 | plat/intel/soc/agilex/soc/agilex_pinmux.c \ |
| 45 | plat/intel/soc/agilex/soc/agilex_memory_controller.c \ |
| 46 | plat/intel/soc/agilex/socfpga_delay_timer.c \ |
| 47 | plat/intel/soc/agilex/socfpga_image_load.c \ |
| 48 | plat/intel/soc/agilex/soc/agilex_system_manager.c \ |
| 49 | plat/intel/soc/agilex/soc/agilex_mailbox.c \ |
| 50 | plat/intel/soc/common/drivers/qspi/cadence_qspi.c \ |
| 51 | plat/intel/soc/common/drivers/wdt/watchdog.c \ |
| 52 | plat/intel/soc/common/drivers/ccu/ncore_ccu.c |
| 53 | |
| 54 | BL31_SOURCES += \ |
| 55 | drivers/arm/cci/cci.c \ |
| 56 | lib/cpus/aarch64/cortex_a53.S \ |
| 57 | lib/cpus/aarch64/aem_generic.S \ |
| 58 | plat/common/plat_psci_common.c \ |
| 59 | plat/intel/soc/agilex/socfpga_sip_svc.c \ |
| 60 | plat/intel/soc/agilex/bl31_plat_setup.c \ |
| 61 | plat/intel/soc/agilex/socfpga_psci.c \ |
| 62 | plat/intel/soc/agilex/socfpga_topology.c \ |
| 63 | plat/intel/soc/agilex/socfpga_delay_timer.c \ |
| 64 | plat/intel/soc/agilex/soc/agilex_reset_manager.c \ |
| 65 | plat/intel/soc/agilex/soc/agilex_pinmux.c \ |
| 66 | plat/intel/soc/agilex/soc/agilex_clock_manager.c \ |
| 67 | plat/intel/soc/agilex/soc/agilex_handoff.c \ |
| 68 | plat/intel/soc/agilex/soc/agilex_mailbox.c |
| 69 | |
| 70 | PROGRAMMABLE_RESET_ADDRESS := 0 |
| 71 | BL2_AT_EL3 := 1 |
| 72 | MULTI_CONSOLE_API := 1 |
| 73 | USE_COHERENT_MEM := 1 |