Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # Redistribution and use in source and binary forms, with or without |
| 5 | # modification, are permitted provided that the following conditions are met: |
| 6 | # |
| 7 | # Redistributions of source code must retain the above copyright notice, this |
| 8 | # list of conditions and the following disclaimer. |
| 9 | # |
| 10 | # Redistributions in binary form must reproduce the above copyright notice, |
| 11 | # this list of conditions and the following disclaimer in the documentation |
| 12 | # and/or other materials provided with the distribution. |
| 13 | # |
| 14 | # Neither the name of ARM nor the names of its contributors may be used |
| 15 | # to endorse or promote products derived from this software without specific |
| 16 | # prior written permission. |
| 17 | # |
| 18 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | # POSSIBILITY OF SUCH DAMAGE. |
| 29 | # |
| 30 | |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 31 | PLAT_INCLUDES := -Idrivers/arm/interconnect/cci-400 \ |
Soby Mathew | 52f52b4 | 2014-03-12 14:52:51 +0000 | [diff] [blame] | 32 | -Idrivers/console \ |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 33 | -Idrivers/arm/peripherals/pl011 \ |
| 34 | -Idrivers/power |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 35 | |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 36 | PLAT_BL1_C_VPATH := drivers/arm/interconnect/cci-400 \ |
Soby Mathew | 52f52b4 | 2014-03-12 14:52:51 +0000 | [diff] [blame] | 37 | drivers/console \ |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 38 | drivers/arm/peripherals/pl011 \ |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 39 | lib/arch/${ARCH} \ |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 40 | lib/semihosting \ |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 41 | lib/stdlib \ |
| 42 | drivers/io |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 43 | |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 44 | PLAT_BL1_S_VPATH := lib/semihosting/${ARCH} |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 45 | |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 46 | PLAT_BL2_C_VPATH := drivers/arm/interconnect/cci-400 \ |
Soby Mathew | 52f52b4 | 2014-03-12 14:52:51 +0000 | [diff] [blame] | 47 | drivers/console \ |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 48 | drivers/arm/peripherals/pl011 \ |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 49 | lib/arch/${ARCH} \ |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 50 | lib/stdlib \ |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 51 | lib/semihosting \ |
| 52 | drivers/io |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 53 | |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 54 | PLAT_BL2_S_VPATH := lib/semihosting/${ARCH} |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 55 | |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 56 | PLAT_BL31_C_VPATH := drivers/arm/interconnect/cci-400 \ |
Soby Mathew | 52f52b4 | 2014-03-12 14:52:51 +0000 | [diff] [blame] | 57 | drivers/console \ |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 58 | drivers/arm/peripherals/pl011 \ |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 59 | lib/arch/${ARCH} \ |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 60 | lib/semihosting \ |
| 61 | lib/stdlib \ |
James Morrissey | 9d72b4e | 2014-02-10 17:04:32 +0000 | [diff] [blame] | 62 | drivers/power \ |
| 63 | drivers/io |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 64 | |
Ryan Harkin | d7a6b0f | 2014-01-13 14:40:13 +0000 | [diff] [blame] | 65 | PLAT_BL31_S_VPATH := lib/semihosting/${ARCH} |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 66 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 67 | PLAT_BL_COMMON_SOURCES := semihosting_call.S \ |
| 68 | mmio.c \ |
Soby Mathew | 52f52b4 | 2014-03-12 14:52:51 +0000 | [diff] [blame] | 69 | console.c \ |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 70 | pl011.c \ |
| 71 | semihosting.c \ |
| 72 | sysreg_helpers.S \ |
| 73 | plat_io_storage.c \ |
| 74 | io_semihosting.c \ |
| 75 | io_fip.c \ |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 76 | io_memmap.c \ |
| 77 | xlat_tables.c |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 78 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 79 | BL1_SOURCES += bl1_plat_setup.c \ |
| 80 | bl1_plat_helpers.S \ |
| 81 | plat_helpers.S \ |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 82 | platform_up_stack.S \ |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 83 | plat_common.c \ |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 84 | cci400.c |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 85 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 86 | BL2_SOURCES += bl2_plat_setup.c \ |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 87 | platform_up_stack.S \ |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 88 | plat_common.c |
Ryan Harkin | 25cff83 | 2014-01-13 12:37:03 +0000 | [diff] [blame] | 89 | |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 90 | BL31_SOURCES += bl31_plat_setup.c \ |
| 91 | plat_helpers.S \ |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 92 | platform_mp_stack.S \ |
Jon Medhurst | 407a95c | 2014-02-12 15:54:48 +0000 | [diff] [blame] | 93 | plat_common.c \ |
| 94 | plat_pm.c \ |
| 95 | plat_topology.c \ |
| 96 | plat_gic.c \ |
| 97 | fvp_pwrc.c \ |
| 98 | cci400.c \ |
| 99 | gic_v2.c \ |
| 100 | gic_v3.c |