aboutsummaryrefslogtreecommitdiff
path: root/product/n1sdp/scp_romfw/firmware.mk
blob: 171f486d537ca7b86b40c7bd9005f1f8202ec921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Arm SCP/MCP Software
# Copyright (c) 2018-2020, Arm Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
# The order of the modules in the BS_FIRMWARE_MODULES list is the order in which
# the modules are initialized, bound, started during the pre-runtime phase.
#

BS_FIRMWARE_CPU := cortex-m7
BS_FIRMWARE_HAS_MULTITHREADING := no
BS_FIRMWARE_HAS_NOTIFICATION := yes
BS_FIRMWARE_MODULE_HEADERS_ONLY := timer \
                                   power_domain

BS_FIRMWARE_MODULES := \
    pl011 \
    fip \
    n1sdp_rom \
    clock

BS_FIRMWARE_SOURCES := \
    config_pl011.c \
    config_fip.c \
    config_n1sdp_rom.c \
    config_clock.c

include $(BS_DIR)/firmware.mk