blob: d8555bc5759c6d54754ccf77a02cd409d50a9a72 [file] [log] [blame]
Soby Mathew802f8652014-08-14 16:19:29 +01001#
John Tsichritzis56369c12019-02-19 13:49:06 +00002# Copyright (c) 2014-2019, ARM Limited and Contributors. All rights reserved.
Soby Mathew802f8652014-08-14 16:19:29 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Soby Mathew802f8652014-08-14 16:19:29 +01005#
6
Soby Mathew937488b2014-09-22 14:13:34 +01007# Cortex A57 specific optimisation to skip L1 cache flush when
8# cluster is powered down.
9SKIP_A57_L1_FLUSH_PWR_DWN ?=0
10
Sandrine Bailleuxd4817592016-01-13 14:57:38 +000011# Flag to disable the cache non-temporal hint.
12# It is enabled by default.
13A53_DISABLE_NON_TEMPORAL_HINT ?=1
14
15# Flag to disable the cache non-temporal hint.
16# It is enabled by default.
17A57_DISABLE_NON_TEMPORAL_HINT ?=1
18
Dimitris Papastamos446f7f12017-11-30 14:53:53 +000019WORKAROUND_CVE_2017_5715 ?=1
Dimitris Papastamose6625ec2018-04-05 14:38:26 +010020WORKAROUND_CVE_2018_3639 ?=1
Dimitris Papastamosba51d9e2018-05-16 11:36:14 +010021DYNAMIC_WORKAROUND_CVE_2018_3639 ?=0
Dimitris Papastamos446f7f12017-11-30 14:53:53 +000022
Soby Mathew937488b2014-09-22 14:13:34 +010023# Process SKIP_A57_L1_FLUSH_PWR_DWN flag
24$(eval $(call assert_boolean,SKIP_A57_L1_FLUSH_PWR_DWN))
25$(eval $(call add_define,SKIP_A57_L1_FLUSH_PWR_DWN))
26
Sandrine Bailleuxd4817592016-01-13 14:57:38 +000027# Process A53_DISABLE_NON_TEMPORAL_HINT flag
28$(eval $(call assert_boolean,A53_DISABLE_NON_TEMPORAL_HINT))
29$(eval $(call add_define,A53_DISABLE_NON_TEMPORAL_HINT))
30
31# Process A57_DISABLE_NON_TEMPORAL_HINT flag
32$(eval $(call assert_boolean,A57_DISABLE_NON_TEMPORAL_HINT))
33$(eval $(call add_define,A57_DISABLE_NON_TEMPORAL_HINT))
34
Dimitris Papastamos446f7f12017-11-30 14:53:53 +000035# Process WORKAROUND_CVE_2017_5715 flag
36$(eval $(call assert_boolean,WORKAROUND_CVE_2017_5715))
37$(eval $(call add_define,WORKAROUND_CVE_2017_5715))
Soby Mathew937488b2014-09-22 14:13:34 +010038
Dimitris Papastamose6625ec2018-04-05 14:38:26 +010039# Process WORKAROUND_CVE_2018_3639 flag
40$(eval $(call assert_boolean,WORKAROUND_CVE_2018_3639))
41$(eval $(call add_define,WORKAROUND_CVE_2018_3639))
42
Dimitris Papastamosba51d9e2018-05-16 11:36:14 +010043$(eval $(call assert_boolean,DYNAMIC_WORKAROUND_CVE_2018_3639))
44$(eval $(call add_define,DYNAMIC_WORKAROUND_CVE_2018_3639))
45
46ifneq (${DYNAMIC_WORKAROUND_CVE_2018_3639},0)
47 ifeq (${WORKAROUND_CVE_2018_3639},0)
48 $(error "Error: WORKAROUND_CVE_2018_3639 must be 1 if DYNAMIC_WORKAROUND_CVE_2018_3639 is 1")
49 endif
50endif
51
Sandrine Bailleuxafa8a782016-04-14 12:59:42 +010052# CPU Errata Build flags.
53# These should be enabled by the platform if the erratum workaround needs to be
54# applied.
Soby Mathew802f8652014-08-14 16:19:29 +010055
Sandrine Bailleuxafa8a782016-04-14 12:59:42 +010056# Flag to apply erratum 826319 workaround during reset. This erratum applies
57# only to revision <= r0p2 of the Cortex A53 cpu.
developer4fceaca2015-07-29 20:55:31 +080058ERRATA_A53_826319 ?=0
59
Douglas Raillardd56fb042017-06-19 15:38:02 +010060# Flag to apply erratum 835769 workaround at compile and link time. This
61# erratum applies to revision <= r0p4 of the Cortex A53 cpu. Enabling this
62# workaround can lead the linker to create "*.stub" sections.
63ERRATA_A53_835769 ?=0
64
Sandrine Bailleuxafa8a782016-04-14 12:59:42 +010065# Flag to apply erratum 836870 workaround during reset. This erratum applies
66# only to revision <= r0p3 of the Cortex A53 cpu. From r0p4 and onwards, this
Douglas Raillardc847f662017-02-15 17:38:43 +000067# erratum workaround is enabled by default in hardware.
developer4fceaca2015-07-29 20:55:31 +080068ERRATA_A53_836870 ?=0
69
Douglas Raillardd56fb042017-06-19 15:38:02 +010070# Flag to apply erratum 843419 workaround at link time.
71# This erratum applies to revision <= r0p4 of the Cortex A53 cpu. Enabling this
72# workaround could lead the linker to emit "*.stub" sections which are 4kB
73# aligned.
74ERRATA_A53_843419 ?=0
75
Andre Przywara00eefd92016-10-06 16:54:53 +010076# Flag to apply errata 855873 during reset. This errata applies to all
77# revisions of the Cortex A53 CPU, but this firmware workaround only works
78# for revisions r0p3 and higher. Earlier revisions are taken care
79# of by the rich OS.
80ERRATA_A53_855873 ?=0
81
Ambroise Vincent7927fa02019-02-21 16:20:43 +000082# Flag to apply erratum 768277 workaround during reset. This erratum applies
83# only to revision r0p0 of the Cortex A55 cpu.
84ERRATA_A55_768277 ?=0
85
Ambroise Vincent6f319602019-02-21 16:25:37 +000086# Flag to apply erratum 778703 workaround during reset. This erratum applies
87# only to revision r0p0 of the Cortex A55 cpu.
88ERRATA_A55_778703 ?=0
89
Ambroise Vincent6a77f052019-02-21 16:27:34 +000090# Flag to apply erratum 798797 workaround during reset. This erratum applies
91# only to revision r0p0 of the Cortex A55 cpu.
92ERRATA_A55_798797 ?=0
93
Ambroise Vincentdd961f72019-02-21 16:29:16 +000094# Flag to apply erratum 846532 workaround during reset. This erratum applies
95# only to revision <= r0p1 of the Cortex A55 cpu.
96ERRATA_A55_846532 ?=0
97
Ambroise Vincenta1d64462019-02-21 16:29:50 +000098# Flag to apply erratum 903758 workaround during reset. This erratum applies
99# only to revision <= r0p1 of the Cortex A55 cpu.
100ERRATA_A55_903758 ?=0
101
Sandrine Bailleuxafa8a782016-04-14 12:59:42 +0100102# Flag to apply erratum 806969 workaround during reset. This erratum applies
103# only to revision r0p0 of the Cortex A57 cpu.
Soby Mathew802f8652014-08-14 16:19:29 +0100104ERRATA_A57_806969 ?=0
105
Antonio Nino Diaz3f13c352017-02-24 11:39:22 +0000106# Flag to apply erratum 813419 workaround during reset. This erratum applies
107# only to revision r0p0 of the Cortex A57 cpu.
108ERRATA_A57_813419 ?=0
109
Sandrine Bailleuxafa8a782016-04-14 12:59:42 +0100110# Flag to apply erratum 813420 workaround during reset. This erratum applies
111# only to revision r0p0 of the Cortex A57 cpu.
Soby Mathew802f8652014-08-14 16:19:29 +0100112ERRATA_A57_813420 ?=0
113
Ambroise Vincent1b0db762019-02-21 16:35:07 +0000114# Flag to apply erratum 814670 workaround during reset. This erratum applies
115# only to revision r0p0 of the Cortex A57 cpu.
116ERRATA_A57_814670 ?=0
117
Sandrine Bailleuxa7e0c532016-04-14 13:32:31 +0100118# Flag to apply erratum 826974 workaround during reset. This erratum applies
119# only to revision <= r1p1 of the Cortex A57 cpu.
120ERRATA_A57_826974 ?=0
121
Sandrine Bailleuxadcbd552016-04-14 14:24:13 +0100122# Flag to apply erratum 826977 workaround during reset. This erratum applies
123# only to revision <= r1p1 of the Cortex A57 cpu.
124ERRATA_A57_826977 ?=0
125
Sandrine Bailleuxc11116f2016-04-14 14:04:48 +0100126# Flag to apply erratum 828024 workaround during reset. This erratum applies
127# only to revision <= r1p1 of the Cortex A57 cpu.
128ERRATA_A57_828024 ?=0
129
Sandrine Bailleux48cbe852016-04-14 14:18:07 +0100130# Flag to apply erratum 829520 workaround during reset. This erratum applies
131# only to revision <= r1p2 of the Cortex A57 cpu.
132ERRATA_A57_829520 ?=0
133
Sandrine Bailleux143ef1a2016-04-21 11:10:52 +0100134# Flag to apply erratum 833471 workaround during reset. This erratum applies
135# only to revision <= r1p2 of the Cortex A57 cpu.
136ERRATA_A57_833471 ?=0
137
Eleanor Bonnici0c9bd272017-08-02 16:35:04 +0100138# Flag to apply erratum 855972 workaround during reset. This erratum applies
139# only to revision <= r1p3 of the Cortex A57 cpu.
140ERRATA_A57_859972 ?=0
141
Eleanor Bonnicic3b4ca12017-08-02 18:33:41 +0100142# Flag to apply erratum 855971 workaround during reset. This erratum applies
143# only to revision <= r0p3 of the Cortex A72 cpu.
144ERRATA_A72_859971 ?=0
145
Dimitris Papastamos7ca21db2018-03-26 16:46:01 +0100146# Flag to apply T32 CLREX workaround during reset. This erratum applies
John Tsichritzis56369c12019-02-19 13:49:06 +0000147# only to r0p0 and r1p0 of the Neoverse N1 cpu.
148ERRATA_N1_1043202 ?=1
Dimitris Papastamos7ca21db2018-03-26 16:46:01 +0100149
John Tsichritzis4daa1de2018-07-23 09:11:59 +0100150# Flag to apply DSU erratum 936184. This erratum applies to DSUs containing
151# the ACP interface and revision < r2p0. Applying the workaround results in
152# higher DSU power consumption on idle.
153ERRATA_DSU_936184 ?=0
154
developer4fceaca2015-07-29 20:55:31 +0800155# Process ERRATA_A53_826319 flag
156$(eval $(call assert_boolean,ERRATA_A53_826319))
157$(eval $(call add_define,ERRATA_A53_826319))
158
Douglas Raillardd56fb042017-06-19 15:38:02 +0100159# Process ERRATA_A53_835769 flag
160$(eval $(call assert_boolean,ERRATA_A53_835769))
161$(eval $(call add_define,ERRATA_A53_835769))
162
developer4fceaca2015-07-29 20:55:31 +0800163# Process ERRATA_A53_836870 flag
164$(eval $(call assert_boolean,ERRATA_A53_836870))
165$(eval $(call add_define,ERRATA_A53_836870))
166
Douglas Raillardd56fb042017-06-19 15:38:02 +0100167# Process ERRATA_A53_843419 flag
168$(eval $(call assert_boolean,ERRATA_A53_843419))
169$(eval $(call add_define,ERRATA_A53_843419))
170
Andre Przywara00eefd92016-10-06 16:54:53 +0100171# Process ERRATA_A53_855873 flag
172$(eval $(call assert_boolean,ERRATA_A53_855873))
173$(eval $(call add_define,ERRATA_A53_855873))
174
Ambroise Vincent7927fa02019-02-21 16:20:43 +0000175# Process ERRATA_A55_768277 flag
176$(eval $(call assert_boolean,ERRATA_A55_768277))
177$(eval $(call add_define,ERRATA_A55_768277))
178
Ambroise Vincent6f319602019-02-21 16:25:37 +0000179# Process ERRATA_A55_778703 flag
180$(eval $(call assert_boolean,ERRATA_A55_778703))
181$(eval $(call add_define,ERRATA_A55_778703))
182
Ambroise Vincent6a77f052019-02-21 16:27:34 +0000183# Process ERRATA_A55_798797 flag
184$(eval $(call assert_boolean,ERRATA_A55_798797))
185$(eval $(call add_define,ERRATA_A55_798797))
186
Ambroise Vincentdd961f72019-02-21 16:29:16 +0000187# Process ERRATA_A55_846532 flag
188$(eval $(call assert_boolean,ERRATA_A55_846532))
189$(eval $(call add_define,ERRATA_A55_846532))
190
Ambroise Vincenta1d64462019-02-21 16:29:50 +0000191# Process ERRATA_A55_903758 flag
192$(eval $(call assert_boolean,ERRATA_A55_903758))
193$(eval $(call add_define,ERRATA_A55_903758))
194
Soby Mathew802f8652014-08-14 16:19:29 +0100195# Process ERRATA_A57_806969 flag
196$(eval $(call assert_boolean,ERRATA_A57_806969))
197$(eval $(call add_define,ERRATA_A57_806969))
198
Antonio Nino Diaz3f13c352017-02-24 11:39:22 +0000199# Process ERRATA_A57_813419 flag
200$(eval $(call assert_boolean,ERRATA_A57_813419))
201$(eval $(call add_define,ERRATA_A57_813419))
202
Soby Mathew802f8652014-08-14 16:19:29 +0100203# Process ERRATA_A57_813420 flag
204$(eval $(call assert_boolean,ERRATA_A57_813420))
205$(eval $(call add_define,ERRATA_A57_813420))
Sandrine Bailleuxa7e0c532016-04-14 13:32:31 +0100206
Ambroise Vincent1b0db762019-02-21 16:35:07 +0000207# Process ERRATA_A57_814670 flag
208$(eval $(call assert_boolean,ERRATA_A57_814670))
209$(eval $(call add_define,ERRATA_A57_814670))
210
Sandrine Bailleuxa7e0c532016-04-14 13:32:31 +0100211# Process ERRATA_A57_826974 flag
212$(eval $(call assert_boolean,ERRATA_A57_826974))
213$(eval $(call add_define,ERRATA_A57_826974))
Sandrine Bailleuxc11116f2016-04-14 14:04:48 +0100214
Sandrine Bailleuxadcbd552016-04-14 14:24:13 +0100215# Process ERRATA_A57_826977 flag
216$(eval $(call assert_boolean,ERRATA_A57_826977))
217$(eval $(call add_define,ERRATA_A57_826977))
218
Sandrine Bailleuxc11116f2016-04-14 14:04:48 +0100219# Process ERRATA_A57_828024 flag
220$(eval $(call assert_boolean,ERRATA_A57_828024))
221$(eval $(call add_define,ERRATA_A57_828024))
Sandrine Bailleux48cbe852016-04-14 14:18:07 +0100222
223# Process ERRATA_A57_829520 flag
224$(eval $(call assert_boolean,ERRATA_A57_829520))
225$(eval $(call add_define,ERRATA_A57_829520))
Sandrine Bailleux143ef1a2016-04-21 11:10:52 +0100226
227# Process ERRATA_A57_833471 flag
228$(eval $(call assert_boolean,ERRATA_A57_833471))
229$(eval $(call add_define,ERRATA_A57_833471))
Douglas Raillardd56fb042017-06-19 15:38:02 +0100230
Eleanor Bonnici0c9bd272017-08-02 16:35:04 +0100231# Process ERRATA_A57_859972 flag
232$(eval $(call assert_boolean,ERRATA_A57_859972))
233$(eval $(call add_define,ERRATA_A57_859972))
234
Eleanor Bonnicic3b4ca12017-08-02 18:33:41 +0100235# Process ERRATA_A72_859971 flag
236$(eval $(call assert_boolean,ERRATA_A72_859971))
237$(eval $(call add_define,ERRATA_A72_859971))
238
John Tsichritzis56369c12019-02-19 13:49:06 +0000239# Process ERRATA_N1_1043202 flag
240$(eval $(call assert_boolean,ERRATA_N1_1043202))
241$(eval $(call add_define,ERRATA_N1_1043202))
Dimitris Papastamos7ca21db2018-03-26 16:46:01 +0100242
John Tsichritzis4daa1de2018-07-23 09:11:59 +0100243# Process ERRATA_DSU_936184 flag
244$(eval $(call assert_boolean,ERRATA_DSU_936184))
245$(eval $(call add_define,ERRATA_DSU_936184))
246
Douglas Raillardd56fb042017-06-19 15:38:02 +0100247# Errata build flags
248ifneq (${ERRATA_A53_843419},0)
Douglas Raillardd0c82732017-06-22 14:44:48 +0100249TF_LDFLAGS_aarch64 += --fix-cortex-a53-843419
Douglas Raillardd56fb042017-06-19 15:38:02 +0100250endif
251
252ifneq (${ERRATA_A53_835769},0)
253TF_CFLAGS_aarch64 += -mfix-cortex-a53-835769
Douglas Raillardd0c82732017-06-22 14:44:48 +0100254TF_LDFLAGS_aarch64 += --fix-cortex-a53-835769
Douglas Raillardd56fb042017-06-19 15:38:02 +0100255endif