blob: be8dcb3d5471c2b165ebbe9c132e7a47736fe01b [file] [log] [blame]
Ryan Harkin25cff832014-01-13 12:37:03 +00001#
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 Harkind7a6b0f2014-01-13 14:40:13 +000031PLAT_INCLUDES := -Idrivers/arm/interconnect/cci-400 \
32 -Idrivers/arm/peripherals/pl011 \
33 -Idrivers/power
Ryan Harkin25cff832014-01-13 12:37:03 +000034
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000035PLAT_BL1_C_VPATH := drivers/arm/interconnect/cci-400 \
36 drivers/arm/peripherals/pl011 \
Jon Medhurst38aa76a2014-02-26 16:27:53 +000037 lib/arch/${ARCH} \
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000038 lib/semihosting \
James Morrissey9d72b4e2014-02-10 17:04:32 +000039 lib/stdlib \
40 drivers/io
Ryan Harkin25cff832014-01-13 12:37:03 +000041
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000042PLAT_BL1_S_VPATH := lib/semihosting/${ARCH}
Ryan Harkin25cff832014-01-13 12:37:03 +000043
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000044PLAT_BL2_C_VPATH := drivers/arm/interconnect/cci-400 \
45 drivers/arm/peripherals/pl011 \
Jon Medhurst38aa76a2014-02-26 16:27:53 +000046 lib/arch/${ARCH} \
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000047 lib/stdlib \
James Morrissey9d72b4e2014-02-10 17:04:32 +000048 lib/semihosting \
49 drivers/io
Ryan Harkin25cff832014-01-13 12:37:03 +000050
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000051PLAT_BL2_S_VPATH := lib/semihosting/${ARCH}
Ryan Harkin25cff832014-01-13 12:37:03 +000052
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000053PLAT_BL31_C_VPATH := drivers/arm/interconnect/cci-400 \
54 drivers/arm/peripherals/pl011 \
Jon Medhurst38aa76a2014-02-26 16:27:53 +000055 lib/arch/${ARCH} \
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000056 lib/semihosting \
57 lib/stdlib \
James Morrissey9d72b4e2014-02-10 17:04:32 +000058 drivers/power \
59 drivers/io
Ryan Harkin25cff832014-01-13 12:37:03 +000060
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000061PLAT_BL31_S_VPATH := lib/semihosting/${ARCH}
Ryan Harkin25cff832014-01-13 12:37:03 +000062
Jon Medhurst6d55d102014-02-12 15:54:48 +000063PLAT_BL_COMMON_SOURCES := semihosting_call.S \
64 mmio.c \
65 pl011.c \
66 semihosting.c \
67 sysreg_helpers.S \
68 plat_io_storage.c \
69 io_semihosting.c \
70 io_fip.c \
Jon Medhurst38aa76a2014-02-26 16:27:53 +000071 io_memmap.c \
72 xlat_tables.c
Ryan Harkin25cff832014-01-13 12:37:03 +000073
Jon Medhurst6d55d102014-02-12 15:54:48 +000074BL1_SOURCES += bl1_plat_setup.c \
75 bl1_plat_helpers.S \
76 plat_helpers.S \
77 plat_common.c \
Jon Medhurst6d55d102014-02-12 15:54:48 +000078 cci400.c
Ryan Harkin25cff832014-01-13 12:37:03 +000079
Jon Medhurst6d55d102014-02-12 15:54:48 +000080BL2_SOURCES += bl2_plat_setup.c \
Jon Medhurst6d55d102014-02-12 15:54:48 +000081 plat_common.c
Ryan Harkin25cff832014-01-13 12:37:03 +000082
Jon Medhurst6d55d102014-02-12 15:54:48 +000083BL31_SOURCES += bl31_plat_setup.c \
84 plat_helpers.S \
Jon Medhurst6d55d102014-02-12 15:54:48 +000085 plat_common.c \
86 plat_pm.c \
87 plat_topology.c \
88 plat_gic.c \
89 fvp_pwrc.c \
90 cci400.c \
91 gic_v2.c \
92 gic_v3.c