Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
54d0911f
Commit
54d0911f
authored
Jul 25, 2014
by
Dan Handley
Browse files
Merge pull request #168 from sandrine-bailleux/sb/set-default-gic-arch
Define ARM_GIC_ARCH default value for all platforms
parents
705bf680
2b98e789
Changes
2
Show whitespace changes
Inline
Side-by-side
Makefile
View file @
54d0911f
...
...
@@ -51,6 +51,9 @@ NS_TIMER_SWITCH := 0
RESET_TO_BL31
:=
0
# Include FP registers in cpu context
CTX_INCLUDE_FPREGS
:=
0
# Determine the version of ARM GIC architecture to use for interrupt management
# in EL3. The platform port can change this value if needed.
ARM_GIC_ARCH
:=
2
# Checkpatch ignores
...
...
@@ -188,6 +191,10 @@ $(eval $(call add_define,RESET_TO_BL31))
$(eval
$(call
assert_boolean,CTX_INCLUDE_FPREGS))
$(eval
$(call
add_define,CTX_INCLUDE_FPREGS))
# Process ARM_GIC_ARCH flag
$(eval
$(call
add_define,ARM_GIC_ARCH))
ASFLAGS
+=
-nostdinc
-ffreestanding
-Wa
,--fatal-warnings
\
-Werror
-Wmissing-include-dirs
\
-mgeneral-regs-only
-D__ASSEMBLY__
\
...
...
plat/fvp/platform.mk
View file @
54d0911f
...
...
@@ -82,8 +82,3 @@ BL31_SOURCES += drivers/arm/cci400/cci400.c \
plat/fvp/aarch64/fvp_helpers.S
\
plat/fvp/aarch64/fvp_common.c
\
plat/fvp/drivers/pwrc/fvp_pwrc.c
# Flag used by the platform port to determine the version of ARM GIC
# architecture to use for interrupt management in EL3.
ARM_GIC_ARCH
:=
2
$(eval
$(call
add_define,ARM_GIC_ARCH))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment