Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 1 | # Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved. |
| 2 | # |
| 3 | # Redistribution and use in source and binary forms, with or without |
| 4 | # modification, are permitted provided that the following conditions are met: |
| 5 | # |
| 6 | # Redistributions of source code must retain the above copyright notice, this |
| 7 | # list of conditions and the following disclaimer. |
| 8 | # |
| 9 | # Redistributions in binary form must reproduce the above copyright notice, |
| 10 | # this list of conditions and the following disclaimer in the documentation |
| 11 | # and/or other materials provided with the distribution. |
| 12 | # |
| 13 | # Neither the name of ARM nor the names of its contributors may be used |
| 14 | # to endorse or promote products derived from this software without specific |
| 15 | # prior written permission. |
| 16 | # |
| 17 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 18 | # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 19 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 20 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 21 | # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 22 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 23 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 24 | # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 25 | # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 26 | # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 27 | # POSSIBILITY OF SUCH DAMAGE. |
| 28 | |
| 29 | ENABLE_PLAT_COMPAT := 0 |
| 30 | PROGRAMMABLE_RESET_ADDRESS := 1 |
| 31 | PSCI_EXTENDED_STATE_ID := 1 |
| 32 | A53_DISABLE_NON_TEMPORAL_HINT := 0 |
| 33 | |
Soren Brinkmann | 4a9ca04 | 2016-04-14 10:27:00 -0700 | [diff] [blame] | 34 | ifdef ZYNQMP_ATF_MEM_BASE |
| 35 | $(eval $(call add_define,ZYNQMP_ATF_MEM_BASE)) |
| 36 | |
| 37 | ifndef ZYNQMP_ATF_MEM_SIZE |
| 38 | $(error "ZYNQMP_ATF_BASE defined without ZYNQMP_ATF_SIZE") |
| 39 | endif |
| 40 | $(eval $(call add_define,ZYNQMP_ATF_MEM_SIZE)) |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 41 | |
Soren Brinkmann | 4a9ca04 | 2016-04-14 10:27:00 -0700 | [diff] [blame] | 42 | ifdef ZYNQMP_ATF_MEM_PROGBITS_SIZE |
| 43 | $(eval $(call add_define,ZYNQMP_ATF_MEM_PROGBITS_SIZE)) |
| 44 | endif |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 45 | endif |
| 46 | |
Soren Brinkmann | 4a9ca04 | 2016-04-14 10:27:00 -0700 | [diff] [blame] | 47 | ifdef ZYNQMP_BL32_MEM_BASE |
| 48 | $(eval $(call add_define,ZYNQMP_BL32_MEM_BASE)) |
| 49 | |
| 50 | ifndef ZYNQMP_BL32_MEM_SIZE |
| 51 | $(error "ZYNQMP_BL32_BASE defined without ZYNQMP_BL32_SIZE") |
| 52 | endif |
| 53 | $(eval $(call add_define,ZYNQMP_BL32_MEM_SIZE)) |
| 54 | endif |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 55 | |
| 56 | PLAT_INCLUDES := -Iinclude/plat/arm/common/ \ |
| 57 | -Iinclude/plat/arm/common/aarch64/ \ |
| 58 | -Iplat/xilinx/zynqmp/include/ \ |
| 59 | -Iplat/xilinx/zynqmp/pm_service/ |
| 60 | |
Soby Mathew | cc037c1 | 2016-04-08 16:42:58 +0100 | [diff] [blame] | 61 | PLAT_BL_COMMON_SOURCES := lib/xlat_tables/xlat_tables_common.c \ |
| 62 | lib/xlat_tables/aarch64/xlat_tables.c \ |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 63 | drivers/arm/gic/common/gic_common.c \ |
| 64 | drivers/arm/gic/v2/gicv2_main.c \ |
| 65 | drivers/arm/gic/v2/gicv2_helpers.c \ |
| 66 | drivers/cadence/uart/cdns_console.S \ |
| 67 | drivers/console/console.S \ |
| 68 | plat/arm/common/aarch64/arm_common.c \ |
| 69 | plat/arm/common/aarch64/arm_helpers.S \ |
| 70 | plat/arm/common/arm_cci.c \ |
| 71 | plat/arm/common/arm_gicv2.c \ |
| 72 | plat/common/plat_gicv2.c \ |
| 73 | plat/common/aarch64/plat_common.c \ |
| 74 | plat/xilinx/zynqmp/aarch64/zynqmp_helpers.S \ |
| 75 | plat/xilinx/zynqmp/aarch64/zynqmp_common.c |
| 76 | |
| 77 | BL31_SOURCES += drivers/arm/cci/cci.c \ |
| 78 | lib/cpus/aarch64/aem_generic.S \ |
| 79 | lib/cpus/aarch64/cortex_a53.S \ |
| 80 | plat/common/aarch64/plat_psci_common.c \ |
| 81 | plat/common/aarch64/platform_mp_stack.S \ |
| 82 | plat/xilinx/zynqmp/bl31_zynqmp_setup.c \ |
| 83 | plat/xilinx/zynqmp/plat_psci.c \ |
| 84 | plat/xilinx/zynqmp/plat_zynqmp.c \ |
Michal Simek | ef8f559 | 2015-06-15 14:22:50 +0200 | [diff] [blame] | 85 | plat/xilinx/zynqmp/plat_startup.c \ |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 86 | plat/xilinx/zynqmp/plat_topology.c \ |
| 87 | plat/xilinx/zynqmp/sip_svc_setup.c \ |
| 88 | plat/xilinx/zynqmp/pm_service/pm_svc_main.c \ |
| 89 | plat/xilinx/zynqmp/pm_service/pm_api_sys.c \ |
| 90 | plat/xilinx/zynqmp/pm_service/pm_ipi.c \ |
| 91 | plat/xilinx/zynqmp/pm_service/pm_client.c |
| 92 | |
| 93 | ifneq (${RESET_TO_BL31},1) |
| 94 | $(error "Using BL31 as the reset vector is only one option supported on ZynqMP. Please set RESET_TO_BL31 to 1.") |
| 95 | endif |