Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 1 | # |
Bipin Ravi | af40d69 | 2021-12-22 14:35:21 -0600 | [diff] [blame] | 2 | # Copyright (c) 2014-2022, Arm Limited and Contributors. All rights reserved. |
Varun Wadekar | 9030a6c | 2022-03-09 22:04:00 +0000 | [diff] [blame] | 3 | # Copyright (c) 2020-2022, NVIDIA Corporation. All rights reserved. |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 4 | # |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 5 | # SPDX-License-Identifier: BSD-3-Clause |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 6 | # |
| 7 | |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 8 | # Cortex A57 specific optimisation to skip L1 cache flush when |
| 9 | # cluster is powered down. |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 10 | SKIP_A57_L1_FLUSH_PWR_DWN ?=0 |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 11 | |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 12 | # Flag to disable the cache non-temporal hint. |
| 13 | # It is enabled by default. |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 14 | A53_DISABLE_NON_TEMPORAL_HINT ?=1 |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 15 | |
| 16 | # Flag to disable the cache non-temporal hint. |
| 17 | # It is enabled by default. |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 18 | A57_DISABLE_NON_TEMPORAL_HINT ?=1 |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 19 | |
Varun Wadekar | 5ee3abc | 2018-06-12 16:49:12 -0700 | [diff] [blame] | 20 | # Flag to enable higher performance non-cacheable load forwarding. |
| 21 | # It is disabled by default. |
| 22 | A57_ENABLE_NONCACHEABLE_LOAD_FWD ?= 0 |
| 23 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 24 | WORKAROUND_CVE_2017_5715 ?=1 |
| 25 | WORKAROUND_CVE_2018_3639 ?=1 |
Dimitris Papastamos | ba51d9e | 2018-05-16 11:36:14 +0100 | [diff] [blame] | 26 | DYNAMIC_WORKAROUND_CVE_2018_3639 ?=0 |
Bipin Ravi | 8649974 | 2022-01-18 01:59:06 -0600 | [diff] [blame] | 27 | WORKAROUND_CVE_2022_23960 ?=1 |
Dimitris Papastamos | 446f7f1 | 2017-11-30 14:53:53 +0000 | [diff] [blame] | 28 | |
Javier Almansa Sobrino | 9faad3c | 2020-10-23 13:22:07 +0100 | [diff] [blame] | 29 | # Flags to indicate internal or external Last level cache |
Manish Pandey | 3880a36 | 2020-01-24 11:54:44 +0000 | [diff] [blame] | 30 | # By default internal |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 31 | NEOVERSE_Nx_EXTERNAL_LLC ?=0 |
Manish Pandey | 3880a36 | 2020-01-24 11:54:44 +0000 | [diff] [blame] | 32 | |
Varun Wadekar | 5ee3abc | 2018-06-12 16:49:12 -0700 | [diff] [blame] | 33 | # Process A57_ENABLE_NONCACHEABLE_LOAD_FWD flag |
| 34 | $(eval $(call assert_boolean,A57_ENABLE_NONCACHEABLE_LOAD_FWD)) |
| 35 | $(eval $(call add_define,A57_ENABLE_NONCACHEABLE_LOAD_FWD)) |
| 36 | |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 37 | # Process SKIP_A57_L1_FLUSH_PWR_DWN flag |
| 38 | $(eval $(call assert_boolean,SKIP_A57_L1_FLUSH_PWR_DWN)) |
| 39 | $(eval $(call add_define,SKIP_A57_L1_FLUSH_PWR_DWN)) |
| 40 | |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 41 | # Process A53_DISABLE_NON_TEMPORAL_HINT flag |
| 42 | $(eval $(call assert_boolean,A53_DISABLE_NON_TEMPORAL_HINT)) |
| 43 | $(eval $(call add_define,A53_DISABLE_NON_TEMPORAL_HINT)) |
| 44 | |
| 45 | # Process A57_DISABLE_NON_TEMPORAL_HINT flag |
| 46 | $(eval $(call assert_boolean,A57_DISABLE_NON_TEMPORAL_HINT)) |
| 47 | $(eval $(call add_define,A57_DISABLE_NON_TEMPORAL_HINT)) |
| 48 | |
Dimitris Papastamos | 446f7f1 | 2017-11-30 14:53:53 +0000 | [diff] [blame] | 49 | # Process WORKAROUND_CVE_2017_5715 flag |
| 50 | $(eval $(call assert_boolean,WORKAROUND_CVE_2017_5715)) |
| 51 | $(eval $(call add_define,WORKAROUND_CVE_2017_5715)) |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 52 | |
Dimitris Papastamos | e6625ec | 2018-04-05 14:38:26 +0100 | [diff] [blame] | 53 | # Process WORKAROUND_CVE_2018_3639 flag |
| 54 | $(eval $(call assert_boolean,WORKAROUND_CVE_2018_3639)) |
| 55 | $(eval $(call add_define,WORKAROUND_CVE_2018_3639)) |
| 56 | |
Dimitris Papastamos | ba51d9e | 2018-05-16 11:36:14 +0100 | [diff] [blame] | 57 | $(eval $(call assert_boolean,DYNAMIC_WORKAROUND_CVE_2018_3639)) |
| 58 | $(eval $(call add_define,DYNAMIC_WORKAROUND_CVE_2018_3639)) |
| 59 | |
Bipin Ravi | 8649974 | 2022-01-18 01:59:06 -0600 | [diff] [blame] | 60 | # Process WORKAROUND_CVE_2022_23960 flag |
| 61 | $(eval $(call assert_boolean,WORKAROUND_CVE_2022_23960)) |
| 62 | $(eval $(call add_define,WORKAROUND_CVE_2022_23960)) |
| 63 | |
Javier Almansa Sobrino | 9faad3c | 2020-10-23 13:22:07 +0100 | [diff] [blame] | 64 | $(eval $(call assert_boolean,NEOVERSE_Nx_EXTERNAL_LLC)) |
| 65 | $(eval $(call add_define,NEOVERSE_Nx_EXTERNAL_LLC)) |
Manish Pandey | 3880a36 | 2020-01-24 11:54:44 +0000 | [diff] [blame] | 66 | |
Dimitris Papastamos | ba51d9e | 2018-05-16 11:36:14 +0100 | [diff] [blame] | 67 | ifneq (${DYNAMIC_WORKAROUND_CVE_2018_3639},0) |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 68 | ifeq (${WORKAROUND_CVE_2018_3639},0) |
| 69 | $(error "Error: WORKAROUND_CVE_2018_3639 must be 1 if DYNAMIC_WORKAROUND_CVE_2018_3639 is 1") |
| 70 | endif |
Dimitris Papastamos | ba51d9e | 2018-05-16 11:36:14 +0100 | [diff] [blame] | 71 | endif |
| 72 | |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 73 | # CPU Errata Build flags. |
| 74 | # These should be enabled by the platform if the erratum workaround needs to be |
| 75 | # applied. |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 76 | |
Joel Hutton | 26d1676 | 2019-04-10 12:52:52 +0100 | [diff] [blame] | 77 | # Flag to apply erratum 794073 workaround when disabling mmu. |
| 78 | ERRATA_A9_794073 ?=0 |
| 79 | |
Ambroise Vincent | d4a51eb | 2019-03-04 16:56:26 +0000 | [diff] [blame] | 80 | # Flag to apply erratum 816470 workaround during power down. This erratum |
| 81 | # applies only to revision >= r3p0 of the Cortex A15 cpu. |
| 82 | ERRATA_A15_816470 ?=0 |
| 83 | |
Ambroise Vincent | 68b3812 | 2019-03-05 09:54:21 +0000 | [diff] [blame] | 84 | # Flag to apply erratum 827671 workaround during reset. This erratum applies |
| 85 | # only to revision >= r3p0 of the Cortex A15 cpu. |
| 86 | ERRATA_A15_827671 ?=0 |
| 87 | |
Ambroise Vincent | 8cf9eef | 2019-02-28 16:23:53 +0000 | [diff] [blame] | 88 | # Flag to apply erratum 852421 workaround during reset. This erratum applies |
| 89 | # only to revision <= r1p2 of the Cortex A17 cpu. |
| 90 | ERRATA_A17_852421 ?=0 |
| 91 | |
Ambroise Vincent | fa5c951 | 2019-03-04 13:20:56 +0000 | [diff] [blame] | 92 | # Flag to apply erratum 852423 workaround during reset. This erratum applies |
| 93 | # only to revision <= r1p2 of the Cortex A17 cpu. |
| 94 | ERRATA_A17_852423 ?=0 |
| 95 | |
Louis Mayencourt | 8a06127 | 2019-04-05 16:25:25 +0100 | [diff] [blame] | 96 | # Flag to apply erratum 855472 workaround during reset. This erratum applies |
| 97 | # only to revision r0p0 of the Cortex A35 cpu. |
| 98 | ERRATA_A35_855472 ?=0 |
| 99 | |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 100 | # Flag to apply erratum 819472 workaround during reset. This erratum applies |
| 101 | # only to revision <= r0p1 of the Cortex A53 cpu. |
| 102 | ERRATA_A53_819472 ?=0 |
| 103 | |
| 104 | # Flag to apply erratum 824069 workaround during reset. This erratum applies |
| 105 | # only to revision <= r0p2 of the Cortex A53 cpu. |
| 106 | ERRATA_A53_824069 ?=0 |
| 107 | |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 108 | # Flag to apply erratum 826319 workaround during reset. This erratum applies |
| 109 | # only to revision <= r0p2 of the Cortex A53 cpu. |
developer | 4fceaca | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 110 | ERRATA_A53_826319 ?=0 |
| 111 | |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 112 | # Flag to apply erratum 827319 workaround during reset. This erratum applies |
| 113 | # only to revision <= r0p2 of the Cortex A53 cpu. |
| 114 | ERRATA_A53_827319 ?=0 |
| 115 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 116 | # Flag to apply erratum 835769 workaround at compile and link time. This |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 117 | # erratum applies to revision <= r0p4 of the Cortex A53 cpu. Enabling this |
| 118 | # workaround can lead the linker to create "*.stub" sections. |
| 119 | ERRATA_A53_835769 ?=0 |
| 120 | |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 121 | # Flag to apply erratum 836870 workaround during reset. This erratum applies |
| 122 | # only to revision <= r0p3 of the Cortex A53 cpu. From r0p4 and onwards, this |
Douglas Raillard | c847f66 | 2017-02-15 17:38:43 +0000 | [diff] [blame] | 123 | # erratum workaround is enabled by default in hardware. |
developer | 4fceaca | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 124 | ERRATA_A53_836870 ?=0 |
| 125 | |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 126 | # Flag to apply erratum 843419 workaround at link time. |
| 127 | # This erratum applies to revision <= r0p4 of the Cortex A53 cpu. Enabling this |
| 128 | # workaround could lead the linker to emit "*.stub" sections which are 4kB |
| 129 | # aligned. |
| 130 | ERRATA_A53_843419 ?=0 |
| 131 | |
Andre Przywara | 00eefd9 | 2016-10-06 16:54:53 +0100 | [diff] [blame] | 132 | # Flag to apply errata 855873 during reset. This errata applies to all |
| 133 | # revisions of the Cortex A53 CPU, but this firmware workaround only works |
| 134 | # for revisions r0p3 and higher. Earlier revisions are taken care |
| 135 | # of by the rich OS. |
| 136 | ERRATA_A53_855873 ?=0 |
| 137 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 138 | # Flag to apply erratum 1530924 workaround during reset. This erratum applies |
| 139 | # to all revisions of Cortex A53 cpu. |
| 140 | ERRATA_A53_1530924 ?=0 |
| 141 | |
Ambroise Vincent | 7927fa0 | 2019-02-21 16:20:43 +0000 | [diff] [blame] | 142 | # Flag to apply erratum 768277 workaround during reset. This erratum applies |
| 143 | # only to revision r0p0 of the Cortex A55 cpu. |
| 144 | ERRATA_A55_768277 ?=0 |
| 145 | |
Ambroise Vincent | 6f31960 | 2019-02-21 16:25:37 +0000 | [diff] [blame] | 146 | # Flag to apply erratum 778703 workaround during reset. This erratum applies |
| 147 | # only to revision r0p0 of the Cortex A55 cpu. |
| 148 | ERRATA_A55_778703 ?=0 |
| 149 | |
Ambroise Vincent | 6a77f05 | 2019-02-21 16:27:34 +0000 | [diff] [blame] | 150 | # Flag to apply erratum 798797 workaround during reset. This erratum applies |
| 151 | # only to revision r0p0 of the Cortex A55 cpu. |
| 152 | ERRATA_A55_798797 ?=0 |
| 153 | |
Ambroise Vincent | dd961f7 | 2019-02-21 16:29:16 +0000 | [diff] [blame] | 154 | # Flag to apply erratum 846532 workaround during reset. This erratum applies |
| 155 | # only to revision <= r0p1 of the Cortex A55 cpu. |
| 156 | ERRATA_A55_846532 ?=0 |
| 157 | |
Ambroise Vincent | a1d6446 | 2019-02-21 16:29:50 +0000 | [diff] [blame] | 158 | # Flag to apply erratum 903758 workaround during reset. This erratum applies |
| 159 | # only to revision <= r0p1 of the Cortex A55 cpu. |
| 160 | ERRATA_A55_903758 ?=0 |
| 161 | |
Ambroise Vincent | b72fe7a | 2019-05-28 09:52:48 +0100 | [diff] [blame] | 162 | # Flag to apply erratum 1221012 workaround during reset. This erratum applies |
| 163 | # only to revision <= r1p0 of the Cortex A55 cpu. |
| 164 | ERRATA_A55_1221012 ?=0 |
| 165 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 166 | # Flag to apply erratum 1530923 workaround during reset. This erratum applies |
| 167 | # to all revisions of Cortex A55 cpu. |
| 168 | ERRATA_A55_1530923 ?=0 |
| 169 | |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 170 | # Flag to apply erratum 806969 workaround during reset. This erratum applies |
| 171 | # only to revision r0p0 of the Cortex A57 cpu. |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 172 | ERRATA_A57_806969 ?=0 |
| 173 | |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 174 | # Flag to apply erratum 813419 workaround during reset. This erratum applies |
| 175 | # only to revision r0p0 of the Cortex A57 cpu. |
| 176 | ERRATA_A57_813419 ?=0 |
| 177 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 178 | # Flag to apply erratum 813420 workaround during reset. This erratum applies |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 179 | # only to revision r0p0 of the Cortex A57 cpu. |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 180 | ERRATA_A57_813420 ?=0 |
| 181 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 182 | # Flag to apply erratum 814670 workaround during reset. This erratum applies |
Ambroise Vincent | 1b0db76 | 2019-02-21 16:35:07 +0000 | [diff] [blame] | 183 | # only to revision r0p0 of the Cortex A57 cpu. |
| 184 | ERRATA_A57_814670 ?=0 |
| 185 | |
Ambroise Vincent | aa2c029 | 2019-02-21 16:35:49 +0000 | [diff] [blame] | 186 | # Flag to apply erratum 817169 workaround during power down. This erratum |
| 187 | # applies only to revision <= r0p1 of the Cortex A57 cpu. |
| 188 | ERRATA_A57_817169 ?=0 |
| 189 | |
Sandrine Bailleux | a7e0c53 | 2016-04-14 13:32:31 +0100 | [diff] [blame] | 190 | # Flag to apply erratum 826974 workaround during reset. This erratum applies |
| 191 | # only to revision <= r1p1 of the Cortex A57 cpu. |
| 192 | ERRATA_A57_826974 ?=0 |
| 193 | |
Sandrine Bailleux | adcbd55 | 2016-04-14 14:24:13 +0100 | [diff] [blame] | 194 | # Flag to apply erratum 826977 workaround during reset. This erratum applies |
| 195 | # only to revision <= r1p1 of the Cortex A57 cpu. |
| 196 | ERRATA_A57_826977 ?=0 |
| 197 | |
Sandrine Bailleux | c11116f | 2016-04-14 14:04:48 +0100 | [diff] [blame] | 198 | # Flag to apply erratum 828024 workaround during reset. This erratum applies |
| 199 | # only to revision <= r1p1 of the Cortex A57 cpu. |
| 200 | ERRATA_A57_828024 ?=0 |
| 201 | |
Sandrine Bailleux | 48cbe85 | 2016-04-14 14:18:07 +0100 | [diff] [blame] | 202 | # Flag to apply erratum 829520 workaround during reset. This erratum applies |
| 203 | # only to revision <= r1p2 of the Cortex A57 cpu. |
| 204 | ERRATA_A57_829520 ?=0 |
| 205 | |
Sandrine Bailleux | 143ef1a | 2016-04-21 11:10:52 +0100 | [diff] [blame] | 206 | # Flag to apply erratum 833471 workaround during reset. This erratum applies |
| 207 | # only to revision <= r1p2 of the Cortex A57 cpu. |
| 208 | ERRATA_A57_833471 ?=0 |
| 209 | |
Eleanor Bonnici | 0c9bd27 | 2017-08-02 16:35:04 +0100 | [diff] [blame] | 210 | # Flag to apply erratum 855972 workaround during reset. This erratum applies |
| 211 | # only to revision <= r1p3 of the Cortex A57 cpu. |
| 212 | ERRATA_A57_859972 ?=0 |
| 213 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 214 | # Flag to apply erratum 1319537 workaround during reset. This erratum applies |
| 215 | # to all revisions of Cortex A57 cpu. |
| 216 | ERRATA_A57_1319537 ?=0 |
| 217 | |
Eleanor Bonnici | c3b4ca1 | 2017-08-02 18:33:41 +0100 | [diff] [blame] | 218 | # Flag to apply erratum 855971 workaround during reset. This erratum applies |
| 219 | # only to revision <= r0p3 of the Cortex A72 cpu. |
| 220 | ERRATA_A72_859971 ?=0 |
| 221 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 222 | # Flag to apply erratum 1319367 workaround during reset. This erratum applies |
| 223 | # to all revisions of Cortex A72 cpu. |
| 224 | ERRATA_A72_1319367 ?=0 |
| 225 | |
Louis Mayencourt | d69722c | 2019-02-27 14:24:16 +0000 | [diff] [blame] | 226 | # Flag to apply erratum 852427 workaround during reset. This erratum applies |
| 227 | # only to revision r0p0 of the Cortex A73 cpu. |
| 228 | ERRATA_A73_852427 ?=0 |
| 229 | |
Louis Mayencourt | 4405de6 | 2019-02-21 16:38:16 +0000 | [diff] [blame] | 230 | # Flag to apply erratum 855423 workaround during reset. This erratum applies |
| 231 | # only to revision <= r0p1 of the Cortex A73 cpu. |
| 232 | ERRATA_A73_855423 ?=0 |
| 233 | |
Louis Mayencourt | 78a0aed | 2019-02-20 12:11:41 +0000 | [diff] [blame] | 234 | # Flag to apply erratum 764081 workaround during reset. This erratum applies |
| 235 | # only to revision <= r0p0 of the Cortex A75 cpu. |
| 236 | ERRATA_A75_764081 ?=0 |
| 237 | |
Louis Mayencourt | 8d86870 | 2019-02-25 14:57:57 +0000 | [diff] [blame] | 238 | # Flag to apply erratum 790748 workaround during reset. This erratum applies |
| 239 | # only to revision <= r0p0 of the Cortex A75 cpu. |
| 240 | ERRATA_A75_790748 ?=0 |
| 241 | |
Louis Mayencourt | 59fa218 | 2019-02-25 15:17:44 +0000 | [diff] [blame] | 242 | # Flag to apply erratum 1073348 workaround during reset. This erratum applies |
| 243 | # only to revision <= r1p0 of the Cortex A76 cpu. |
| 244 | ERRATA_A76_1073348 ?=0 |
| 245 | |
Louis Mayencourt | 0992447 | 2019-02-21 17:35:07 +0000 | [diff] [blame] | 246 | # Flag to apply erratum 1130799 workaround during reset. This erratum applies |
| 247 | # only to revision <= r2p0 of the Cortex A76 cpu. |
| 248 | ERRATA_A76_1130799 ?=0 |
| 249 | |
Louis Mayencourt | adda9d4 | 2019-02-25 11:37:38 +0000 | [diff] [blame] | 250 | # Flag to apply erratum 1220197 workaround during reset. This erratum applies |
| 251 | # only to revision <= r2p0 of the Cortex A76 cpu. |
| 252 | ERRATA_A76_1220197 ?=0 |
| 253 | |
Soby Mathew | 1d3ba1c | 2019-05-01 09:43:18 +0100 | [diff] [blame] | 254 | # Flag to apply erratum 1257314 workaround during reset. This erratum applies |
| 255 | # only to revision <= r3p0 of the Cortex A76 cpu. |
| 256 | ERRATA_A76_1257314 ?=0 |
| 257 | |
| 258 | # Flag to apply erratum 1262606 workaround during reset. This erratum applies |
| 259 | # only to revision <= r3p0 of the Cortex A76 cpu. |
| 260 | ERRATA_A76_1262606 ?=0 |
| 261 | |
| 262 | # Flag to apply erratum 1262888 workaround during reset. This erratum applies |
| 263 | # only to revision <= r3p0 of the Cortex A76 cpu. |
| 264 | ERRATA_A76_1262888 ?=0 |
| 265 | |
| 266 | # Flag to apply erratum 1275112 workaround during reset. This erratum applies |
| 267 | # only to revision <= r3p0 of the Cortex A76 cpu. |
| 268 | ERRATA_A76_1275112 ?=0 |
| 269 | |
Soby Mathew | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 270 | # Flag to apply erratum 1286807 workaround during reset. This erratum applies |
| 271 | # only to revision <= r3p0 of the Cortex A76 cpu. |
| 272 | ERRATA_A76_1286807 ?=0 |
| 273 | |
johpow01 | 9603f98 | 2020-05-29 14:17:38 -0500 | [diff] [blame] | 274 | # Flag to apply erratum 1791580 workaround during reset. This erratum applies |
| 275 | # only to revision <= r4p0 of the Cortex A76 cpu. |
| 276 | ERRATA_A76_1791580 ?=0 |
| 277 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 278 | # Flag to apply erratum 1165522 workaround during reset. This erratum applies |
| 279 | # to all revisions of Cortex A76 cpu. |
| 280 | ERRATA_A76_1165522 ?=0 |
| 281 | |
johpow01 | 81365e3 | 2020-09-29 17:19:09 -0500 | [diff] [blame] | 282 | # Flag to apply erratum 1868343 workaround during reset. This erratum applies |
| 283 | # only to revision <= r4p0 of the Cortex A76 cpu. |
| 284 | ERRATA_A76_1868343 ?=0 |
| 285 | |
johpow01 | 3e34e92 | 2020-12-15 19:02:18 -0600 | [diff] [blame] | 286 | # Flag to apply erratum 1946160 workaround during reset. This erratum applies |
| 287 | # only to revisions r3p0 - r4p1 of the Cortex A76 cpu. |
| 288 | ERRATA_A76_1946160 ?=0 |
| 289 | |
laurenw-arm | 99ad976 | 2020-07-14 14:18:34 -0500 | [diff] [blame] | 290 | # Flag to apply erratum 1508412 workaround during reset. This erratum applies |
| 291 | # only to revision <= r1p0 of the Cortex A77 cpu. |
| 292 | ERRATA_A77_1508412 ?=0 |
| 293 | |
johpow01 | a2fa12c | 2020-09-10 13:39:26 -0500 | [diff] [blame] | 294 | # Flag to apply erratum 1925769 workaround during reset. This erratum applies |
| 295 | # only to revision <= r1p1 of the Cortex A77 cpu. |
| 296 | ERRATA_A77_1925769 ?=0 |
| 297 | |
laurenw-arm | f5dbbef | 2021-03-23 13:09:35 -0500 | [diff] [blame] | 298 | # Flag to apply erratum 1946167 workaround during reset. This erratum applies |
| 299 | # only to revision <= r1p1 of the Cortex A77 cpu. |
| 300 | ERRATA_A77_1946167 ?=0 |
| 301 | |
johpow01 | eb14610 | 2021-05-03 13:37:13 -0500 | [diff] [blame] | 302 | # Flag to apply erratum 1791578 workaround during reset. This erratum applies |
| 303 | # to revisions r0p0, r1p0, and r1p1, it is still open. |
| 304 | ERRATA_A77_1791578 ?=0 |
| 305 | |
Bipin Ravi | 8e91662 | 2022-06-08 15:27:00 -0500 | [diff] [blame] | 306 | # Flag to apply erratum 2356587 workaround during reset. This erratum applies |
| 307 | # to revisions r0p0, r1p0, and r1p1, it is still open. |
| 308 | ERRATA_A77_2356587 ?=0 |
| 309 | |
Madhukar Pappireddy | 4efede7 | 2019-12-18 15:56:27 -0600 | [diff] [blame] | 310 | # Flag to apply erratum 1688305 workaround during reset. This erratum applies |
Jimmy Brisson | 3571fb9 | 2020-06-01 10:18:22 -0500 | [diff] [blame] | 311 | # to revisions r0p0 - r1p0 of the A78 cpu. |
| 312 | ERRATA_A78_1688305 ?=0 |
Madhukar Pappireddy | 4efede7 | 2019-12-18 15:56:27 -0600 | [diff] [blame] | 313 | |
johpow01 | 9131eb8 | 2020-10-06 17:55:25 -0500 | [diff] [blame] | 314 | # Flag to apply erratum 1941498 workaround during reset. This erratum applies |
| 315 | # to revisions r0p0, r1p0, and r1p1 of the A78 cpu. |
| 316 | ERRATA_A78_1941498 ?=0 |
| 317 | |
johpow01 | 85ea43d | 2020-10-07 15:08:01 -0500 | [diff] [blame] | 318 | # Flag to apply erratum 1951500 workaround during reset. This erratum applies |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 319 | # to revisions r1p0 and r1p1 of the A78 cpu. The issue is present in r0p0 as |
johpow01 | 85ea43d | 2020-10-07 15:08:01 -0500 | [diff] [blame] | 320 | # well but there is no workaround for that revision. |
| 321 | ERRATA_A78_1951500 ?=0 |
| 322 | |
johpow01 | b3e8294 | 2021-04-30 18:08:52 -0500 | [diff] [blame] | 323 | # Flag to apply erratum 1821534 workaround during reset. This erratum applies |
| 324 | # to revisions r0p0 and r1p0 of the A78 cpu. |
| 325 | ERRATA_A78_1821534 ?=0 |
| 326 | |
nayanpatel-arm | 80bf7a5 | 2021-08-11 13:33:00 -0700 | [diff] [blame] | 327 | # Flag to apply erratum 1952683 workaround during reset. This erratum applies |
| 328 | # to revision r0p0 of the A78 cpu and was fixed in the revision r1p0. |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 329 | ERRATA_A78_1952683 ?=0 |
nayanpatel-arm | 80bf7a5 | 2021-08-11 13:33:00 -0700 | [diff] [blame] | 330 | |
nayanpatel-arm | 39e0865 | 2021-09-28 17:31:50 -0700 | [diff] [blame] | 331 | # Flag to apply erratum 2132060 workaround during reset. This erratum applies |
| 332 | # to revisions r0p0, r1p0, r1p1, and r1p2 of the A78 cpu. It is still open. |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 333 | ERRATA_A78_2132060 ?=0 |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 334 | |
| 335 | # Flag to apply erratum 2242635 workaround during reset. This erratum applies |
| 336 | # to revisions r1p0, r1p1, and r1p2 of the A78 cpu and is open. The issue is |
| 337 | # present in r0p0 as well but there is no workaround for that revision. |
| 338 | ERRATA_A78_2242635 ?=0 |
| 339 | |
John Powell | 12bc0de | 2022-05-03 15:22:57 -0500 | [diff] [blame] | 340 | # Flag to apply erratum 2376745 workaround during reset. This erratum applies |
| 341 | # to revisions r0p0, r1p0, r1p1, and r1p2 of the A78 cpu. It is still open. |
| 342 | ERRATA_A78_2376745 ?=0 |
| 343 | |
John Powell | a93b7e5 | 2022-05-03 15:52:11 -0500 | [diff] [blame] | 344 | # Flag to apply erratum 2395406 workaround during reset. This erratum applies |
| 345 | # to revisions r0p0, r1p0, r1p1, and r1p2 of the A78 cpu. It is still open. |
| 346 | ERRATA_A78_2395406 ?=0 |
| 347 | |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 348 | # Flag to apply erratum 1941500 workaround during reset. This erratum applies |
| 349 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
| 350 | ERRATA_A78_AE_1941500 ?=0 |
| 351 | |
| 352 | # Flag to apply erratum 1951502 workaround during reset. This erratum applies |
| 353 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
| 354 | ERRATA_A78_AE_1951502 ?=0 |
nayanpatel-arm | 39e0865 | 2021-09-28 17:31:50 -0700 | [diff] [blame] | 355 | |
Varun Wadekar | 9030a6c | 2022-03-09 22:04:00 +0000 | [diff] [blame] | 356 | # Flag to apply erratum 2376748 workaround during reset. This erratum applies |
| 357 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
| 358 | ERRATA_A78_AE_2376748 ?=0 |
| 359 | |
Varun Wadekar | ac6bf2e | 2022-03-09 22:20:32 +0000 | [diff] [blame] | 360 | # Flag to apply erratum 2395408 workaround during reset. This erratum applies |
| 361 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
| 362 | ERRATA_A78_AE_2395408 ?=0 |
| 363 | |
laurenw-arm | 4dc1887 | 2022-07-12 10:43:52 -0500 | [diff] [blame] | 364 | # Flag to apply erratum 2132064 workaround during reset. This erratum applies |
| 365 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
| 366 | ERRATA_A78C_2132064 ?=0 |
| 367 | |
Bipin Ravi | 9c36e12 | 2022-07-15 17:20:16 -0500 | [diff] [blame] | 368 | # Flag to apply erratum 2242638 workaround during reset. This erratum applies |
| 369 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
| 370 | ERRATA_A78C_2242638 ?=0 |
| 371 | |
Okash Khawaja | baee390 | 2022-04-21 12:20:21 +0100 | [diff] [blame] | 372 | # Flag to apply erratum 1821534 workaround during reset. This erratum applies |
| 373 | # to revisions r0p0 - r1p0 of the X1 cpu and fixed in r1p1. |
| 374 | ERRATA_X1_1821534 ?=0 |
| 375 | |
| 376 | # Flag to apply erratum 1688305 workaround during reset. This erratum applies |
| 377 | # to revisions r0p0 - r1p0 of the X1 cpu and fixed in r1p1. |
| 378 | ERRATA_X1_1688305 ?=0 |
| 379 | |
| 380 | # Flag to apply erratum 1827429 workaround during reset. This erratum applies |
| 381 | # to revisions r0p0 - r1p0 of the X1 cpu and fixed in r1p1. |
| 382 | ERRATA_X1_1827429 ?=0 |
| 383 | |
Dimitris Papastamos | 7ca21db | 2018-03-26 16:46:01 +0100 | [diff] [blame] | 384 | # Flag to apply T32 CLREX workaround during reset. This erratum applies |
John Tsichritzis | 56369c1 | 2019-02-19 13:49:06 +0000 | [diff] [blame] | 385 | # only to r0p0 and r1p0 of the Neoverse N1 cpu. |
laurenw-arm | c0763b6 | 2020-01-22 13:30:39 -0600 | [diff] [blame] | 386 | ERRATA_N1_1043202 ?=0 |
Dimitris Papastamos | 7ca21db | 2018-03-26 16:46:01 +0100 | [diff] [blame] | 387 | |
lauwal01 | bd555f4 | 2019-06-24 11:23:50 -0500 | [diff] [blame] | 388 | # Flag to apply erratum 1073348 workaround during reset. This erratum applies |
| 389 | # only to revision r0p0 and r1p0 of the Neoverse N1 cpu. |
| 390 | ERRATA_N1_1073348 ?=0 |
| 391 | |
lauwal01 | 363ee3c | 2019-06-24 11:28:34 -0500 | [diff] [blame] | 392 | # Flag to apply erratum 1130799 workaround during reset. This erratum applies |
| 393 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
| 394 | ERRATA_N1_1130799 ?=0 |
| 395 | |
lauwal01 | f2adb13 | 2019-06-24 11:32:40 -0500 | [diff] [blame] | 396 | # Flag to apply erratum 1165347 workaround during reset. This erratum applies |
| 397 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
| 398 | ERRATA_N1_1165347 ?=0 |
| 399 | |
lauwal01 | e159044 | 2019-06-24 11:35:37 -0500 | [diff] [blame] | 400 | # Flag to apply erratum 1207823 workaround during reset. This erratum applies |
| 401 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
| 402 | ERRATA_N1_1207823 ?=0 |
| 403 | |
lauwal01 | 197f14c | 2019-06-24 11:38:53 -0500 | [diff] [blame] | 404 | # Flag to apply erratum 1220197 workaround during reset. This erratum applies |
| 405 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
| 406 | ERRATA_N1_1220197 ?=0 |
| 407 | |
lauwal01 | 07c2a23 | 2019-06-24 11:42:02 -0500 | [diff] [blame] | 408 | # Flag to apply erratum 1257314 workaround during reset. This erratum applies |
| 409 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
| 410 | ERRATA_N1_1257314 ?=0 |
| 411 | |
lauwal01 | 42771af | 2019-06-24 11:44:58 -0500 | [diff] [blame] | 412 | # Flag to apply erratum 1262606 workaround during reset. This erratum applies |
| 413 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
| 414 | ERRATA_N1_1262606 ?=0 |
| 415 | |
lauwal01 | 00396bf | 2019-06-24 11:47:30 -0500 | [diff] [blame] | 416 | # Flag to apply erratum 1262888 workaround during reset. This erratum applies |
| 417 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
| 418 | ERRATA_N1_1262888 ?=0 |
| 419 | |
lauwal01 | 644b6ed | 2019-06-24 11:49:01 -0500 | [diff] [blame] | 420 | # Flag to apply erratum 1275112 workaround during reset. This erratum applies |
| 421 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
| 422 | ERRATA_N1_1275112 ?=0 |
| 423 | |
Andre Przywara | b934740 | 2019-05-20 14:57:06 +0100 | [diff] [blame] | 424 | # Flag to apply erratum 1315703 workaround during reset. This erratum applies |
| 425 | # to revisions before r3p1 of the Neoverse N1 cpu. |
laurenw-arm | c0763b6 | 2020-01-22 13:30:39 -0600 | [diff] [blame] | 426 | ERRATA_N1_1315703 ?=0 |
Andre Przywara | b934740 | 2019-05-20 14:57:06 +0100 | [diff] [blame] | 427 | |
laurenw-arm | 94accd3 | 2019-08-20 15:51:24 -0500 | [diff] [blame] | 428 | # Flag to apply erratum 1542419 workaround during reset. This erratum applies |
| 429 | # to revisions r3p0 - r4p0 of the Neoverse N1 cpu. |
| 430 | ERRATA_N1_1542419 ?=0 |
| 431 | |
johpow01 | e2428fd | 2020-08-05 12:27:12 -0500 | [diff] [blame] | 432 | # Flag to apply erratum 1868343 workaround during reset. This erratum applies |
| 433 | # to revision <= r4p0 of the Neoverse N1 cpu. |
| 434 | ERRATA_N1_1868343 ?=0 |
| 435 | |
johpow01 | f1a84f5 | 2020-10-07 14:33:15 -0500 | [diff] [blame] | 436 | # Flag to apply erratum 1946160 workaround during reset. This erratum applies |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 437 | # to revisions r3p0, r3p1, r4p0, and r4p1 of the Neoverse N1 cpu. The issue |
johpow01 | f1a84f5 | 2020-10-07 14:33:15 -0500 | [diff] [blame] | 438 | # exists in revisions r0p0, r1p0, and r2p0 as well but there is no workaround. |
| 439 | ERRATA_N1_1946160 ?=0 |
| 440 | |
nayanpatel-arm | 277581e | 2021-08-06 17:46:10 -0700 | [diff] [blame] | 441 | # Flag to apply erratum 2002655 workaround during reset. This erratum applies |
| 442 | # to revisions r0p0 of the Neoverse-N2 cpu, it is still open. |
| 443 | ERRATA_N2_2002655 ?=0 |
| 444 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 445 | # Flag to apply erratum 1774420 workaround during reset. This erratum applies |
laurenw-arm | 3c86d83 | 2021-08-02 13:22:32 -0500 | [diff] [blame] | 446 | # to revisions r0p0 and r1p0 of the Neoverse V1 core, and was fixed in r1p1. |
| 447 | ERRATA_V1_1774420 ?=0 |
| 448 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 449 | # Flag to apply erratum 1791573 workaround during reset. This erratum applies |
johpow01 | c73b03c | 2021-05-03 15:33:39 -0500 | [diff] [blame] | 450 | # to revisions r0p0 and r1p0 of the Neoverse V1 core, and was fixed in r1p1. |
| 451 | ERRATA_V1_1791573 ?=0 |
| 452 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 453 | # Flag to apply erratum 1852267 workaround during reset. This erratum applies |
laurenw-arm | b1923e9 | 2021-08-02 14:40:08 -0500 | [diff] [blame] | 454 | # to revisions r0p0 and r1p0 of the Neoverse V1 core, and was fixed in r1p1. |
| 455 | ERRATA_V1_1852267 ?=0 |
| 456 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 457 | # Flag to apply erratum 1925756 workaround during reset. This needs to be |
laurenw-arm | 6b56f96 | 2021-08-02 15:00:15 -0500 | [diff] [blame] | 458 | # enabled for r0p0, r1p0, and r1p1 of the Neoverse V1 core, it is still open. |
| 459 | ERRATA_V1_1925756 ?=0 |
| 460 | |
johpow01 | 07acb4f | 2020-10-07 16:38:37 -0500 | [diff] [blame] | 461 | # Flag to apply erratum 1940577 workaround during reset. This erratum applies |
| 462 | # to revisions r1p0 and r1p1 of the Neoverse V1 cpu. |
| 463 | ERRATA_V1_1940577 ?=0 |
| 464 | |
johpow01 | 97db675 | 2021-08-02 18:59:08 -0500 | [diff] [blame] | 465 | # Flag to apply erratum 1966096 workaround during reset. This erratum applies |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 466 | # to revisions r1p0 and r1p1 of the Neoverse V1 CPU and is open. This issue |
johpow01 | 97db675 | 2021-08-02 18:59:08 -0500 | [diff] [blame] | 467 | # exists in r0p0 as well but there is no workaround for that revision. |
nayanpatel-arm | fc26ffe | 2021-09-28 13:41:03 -0700 | [diff] [blame] | 468 | ERRATA_V1_1966096 ?=0 |
johpow01 | 97db675 | 2021-08-02 18:59:08 -0500 | [diff] [blame] | 469 | |
johpow01 | ad1ca34 | 2021-08-03 14:35:20 -0500 | [diff] [blame] | 470 | # Flag to apply erratum 2139242 workaround during reset. This erratum applies |
| 471 | # to revisions r0p0, r1p0, and r1p1 of the Neoverse V1 cpu and is still open. |
nayanpatel-arm | fc26ffe | 2021-09-28 13:41:03 -0700 | [diff] [blame] | 472 | ERRATA_V1_2139242 ?=0 |
| 473 | |
| 474 | # Flag to apply erratum 2108267 workaround during reset. This erratum applies |
| 475 | # to revisions r0p0, r1p0, and r1p1 of the Neoverse V1 cpu and is still open. |
| 476 | ERRATA_V1_2108267 ?=0 |
johpow01 | ad1ca34 | 2021-08-03 14:35:20 -0500 | [diff] [blame] | 477 | |
johpow01 | 4de29cb | 2021-09-02 18:29:17 -0500 | [diff] [blame] | 478 | # Flag to apply erratum 2216392 workaround during reset. This erratum applies |
| 479 | # to revisions r1p0 and r1p1 of the Neoverse V1 cpu and is still open. This |
| 480 | # issue exists in r0p0 as well but there is no workaround for that revision. |
| 481 | ERRATA_V1_2216392 ?=0 |
| 482 | |
Bipin Ravi | 971938f | 2022-06-08 16:28:46 -0500 | [diff] [blame] | 483 | # Flag to apply erratum 2294912 workaround during reset. This erratum applies |
| 484 | # to revisions r0p0, r1p0, and r1p1 of the Neoverse V1 cpu and is still open. |
| 485 | ERRATA_V1_2294912 ?=0 |
| 486 | |
Bipin Ravi | b4cb31f | 2022-06-14 17:09:23 -0500 | [diff] [blame] | 487 | # Flag to apply erratum 2372203 workaround during reset. This erratum applies |
| 488 | # to revisions r0p0, r1p0 and r1p1 of the Neoverse V1 cpu and is still open. |
| 489 | ERRATA_V1_2372203 ?=0 |
| 490 | |
nayanpatel-arm | e55d325 | 2021-08-06 16:39:48 -0700 | [diff] [blame] | 491 | # Flag to apply erratum 1987031 workaround during reset. This erratum applies |
| 492 | # to revisions r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
| 493 | ERRATA_A710_1987031 ?=0 |
| 494 | |
nayanpatel-arm | 7597d08 | 2021-08-25 17:35:15 -0700 | [diff] [blame] | 495 | # Flag to apply erratum 2081180 workaround during reset. This erratum applies |
| 496 | # to revisions r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
| 497 | ERRATA_A710_2081180 ?=0 |
| 498 | |
nayanpatel-arm | 0b338b4 | 2021-09-16 15:27:53 -0700 | [diff] [blame] | 499 | # Flag to apply erratum 2083908 workaround during reset. This erratum applies |
| 500 | # to revision r2p0 of the Cortex-A710 cpu and is still open. |
| 501 | ERRATA_A710_2083908 ?=0 |
| 502 | |
nayanpatel-arm | f2dce0e | 2021-09-22 12:35:03 -0700 | [diff] [blame] | 503 | # Flag to apply erratum 2058056 workaround during reset. This erratum applies |
| 504 | # to revisions r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
| 505 | ERRATA_A710_2058056 ?=0 |
| 506 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 507 | # Flag to apply erratum 2055002 workaround during reset. This erratum applies |
| 508 | # to revision r1p0, r2p0 of the Cortex-A710 cpu and is still open. |
| 509 | ERRATA_A710_2055002 ?=0 |
| 510 | |
| 511 | # Flag to apply erratum 2017096 workaround during reset. This erratum applies |
| 512 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
| 513 | ERRATA_A710_2017096 ?=0 |
| 514 | |
| 515 | # Flag to apply erratum 2267065 workaround during reset. This erratum applies |
| 516 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 517 | ERRATA_A710_2267065 ?=0 |
| 518 | |
| 519 | # Flag to apply erratum 2136059 workaround during reset. This erratum applies |
| 520 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 521 | ERRATA_A710_2136059 ?=0 |
| 522 | |
johpow01 | 7249fd0 | 2022-02-28 18:34:04 -0600 | [diff] [blame] | 523 | # Flag to apply erratum 2282622 workaround during reset. This erratum applies |
| 524 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 525 | ERRATA_A710_2282622 ?=0 |
| 526 | |
johpow01 | 7d52a8f | 2022-03-09 16:23:04 -0600 | [diff] [blame] | 527 | # Flag to apply erratum 2008768 workaround during reset. This erratum applies |
| 528 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 529 | ERRATA_A710_2008768 ?=0 |
| 530 | |
Bipin Ravi | 77eab29 | 2022-07-12 15:53:21 -0500 | [diff] [blame] | 531 | # Flag to apply erratum 2371105 workaround during reset. This erratum applies |
| 532 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 533 | ERRATA_A710_2371105 ?=0 |
| 534 | |
Bipin Ravi | eb35e85 | 2021-03-30 16:08:32 -0500 | [diff] [blame] | 535 | # Flag to apply erratum 2067956 workaround during reset. This erratum applies |
| 536 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 537 | ERRATA_N2_2067956 ?=0 |
| 538 | |
Bipin Ravi | 7f56547 | 2021-03-31 10:10:27 -0500 | [diff] [blame] | 539 | # Flag to apply erratum 2025414 workaround during reset. This erratum applies |
| 540 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 541 | ERRATA_N2_2025414 ?=0 |
| 542 | |
Bipin Ravi | 7e03069 | 2021-08-30 13:02:51 -0500 | [diff] [blame] | 543 | # Flag to apply erratum 2189731 workaround during reset. This erratum applies |
| 544 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 545 | ERRATA_N2_2189731 ?=0 |
| 546 | |
Bipin Ravi | 0ba631c | 2021-09-01 01:36:43 -0500 | [diff] [blame] | 547 | # Flag to apply erratum 2138956 workaround during reset. This erratum applies |
| 548 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 549 | ERRATA_N2_2138956 ?=0 |
| 550 | |
nayanpatel-arm | d4c5f9c | 2021-09-28 09:46:45 -0700 | [diff] [blame] | 551 | # Flag to apply erratum 2138953 workaround during reset. This erratum applies |
| 552 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 553 | ERRATA_N2_2138953 ?=0 |
| 554 | |
nayanpatel-arm | 2f15399 | 2021-10-06 15:31:24 -0700 | [diff] [blame] | 555 | # Flag to apply erratum 2242415 workaround during reset. This erratum applies |
| 556 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 557 | ERRATA_N2_2242415 ?=0 |
| 558 | |
nayanpatel-arm | 8e1aa01 | 2021-10-20 18:28:58 -0700 | [diff] [blame] | 559 | # Flag to apply erratum 2138958 workaround during reset. This erratum applies |
| 560 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 561 | ERRATA_N2_2138958 ?=0 |
| 562 | |
nayanpatel-arm | fed9813 | 2021-10-07 17:59:33 -0700 | [diff] [blame] | 563 | # Flag to apply erratum 2242400 workaround during reset. This erratum applies |
| 564 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 565 | ERRATA_N2_2242400 ?=0 |
| 566 | |
nayanpatel-arm | 45b9f6f | 2021-10-20 17:30:46 -0700 | [diff] [blame] | 567 | # Flag to apply erratum 2280757 workaround during reset. This erratum applies |
| 568 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 569 | ERRATA_N2_2280757 ?=0 |
| 570 | |
Daniel Boulby | 1af2b11 | 2022-07-06 14:33:13 +0100 | [diff] [blame] | 571 | # Flag to apply erratum 2388450 workaround during reset. This erratum applies |
| 572 | # to revision r0p0 of the Neoverse N2 cpu, it is fixed in r0p1. |
| 573 | ERRATA_N2_2388450 ?=0 |
| 574 | |
johpow01 | 0afef36 | 2021-12-02 13:25:50 -0600 | [diff] [blame] | 575 | # Flag to apply erratum 2002765 workaround during reset. This erratum applies |
| 576 | # to revisions r0p0, r1p0, and r2p0 of the Cortex-X2 cpu and is still open. |
Bipin Ravi | 2f73d97 | 2022-01-20 00:01:04 -0600 | [diff] [blame] | 577 | ERRATA_X2_2002765 ?=0 |
johpow01 | 0afef36 | 2021-12-02 13:25:50 -0600 | [diff] [blame] | 578 | |
johpow01 | f6c37de | 2021-12-03 11:27:33 -0600 | [diff] [blame] | 579 | # Flag to apply erratum 2058056 workaround during reset. This erratum applies |
| 580 | # to revisions r0p0, r1p0, and r2p0 of the Cortex-X2 cpu and is still open. |
Bipin Ravi | 2f73d97 | 2022-01-20 00:01:04 -0600 | [diff] [blame] | 581 | ERRATA_X2_2058056 ?=0 |
johpow01 | f6c37de | 2021-12-03 11:27:33 -0600 | [diff] [blame] | 582 | |
johpow01 | 15f10bd | 2021-12-01 17:40:39 -0600 | [diff] [blame] | 583 | # Flag to apply erratum 2083908 workaround during reset. This erratum applies |
| 584 | # to revision r2p0 of the Cortex-X2 cpu and is still open. |
Bipin Ravi | 2f73d97 | 2022-01-20 00:01:04 -0600 | [diff] [blame] | 585 | ERRATA_X2_2083908 ?=0 |
| 586 | |
| 587 | # Flag to apply erratum 2017096 workaround during reset. This erratum applies |
| 588 | # only to revisions r0p0, r1p0 and r2p0 of the Cortex-X2 cpu, it is fixed in |
| 589 | # r2p1. |
| 590 | ERRATA_X2_2017096 ?=0 |
johpow01 | 15f10bd | 2021-12-01 17:40:39 -0600 | [diff] [blame] | 591 | |
Bipin Ravi | 9ad5478 | 2022-01-20 00:42:05 -0600 | [diff] [blame] | 592 | # Flag to apply erratum 2081180 workaround during reset. This erratum applies |
| 593 | # only to revisions r0p0, r1p0 and r2p0 of the Cortex-X2 cpu, it is fixed in |
| 594 | # r2p1. |
| 595 | ERRATA_X2_2081180 ?=0 |
| 596 | |
Bipin Ravi | 78b7208 | 2022-02-06 01:29:31 -0600 | [diff] [blame] | 597 | # Flag to apply erratum 2216384 workaround during reset. This erratum applies |
| 598 | # only to revisions r0p0, r1p0 and r2p0 of the Cortex-X2 cpu, it is fixed in |
| 599 | # r2p1. |
| 600 | ERRATA_X2_2216384 ?=0 |
| 601 | |
Bipin Ravi | c6b6521 | 2022-03-08 10:37:43 -0600 | [diff] [blame] | 602 | # Flag to apply erratum 2147715 workaround during reset. This erratum applies |
| 603 | # only to revision r2p0 of the Cortex-X2 cpu, it is fixed in r2p1. |
| 604 | ERRATA_X2_2147715 ?=0 |
| 605 | |
Bipin Ravi | 4e315c3 | 2022-07-12 17:13:01 -0500 | [diff] [blame] | 606 | # Flag to apply erratum 2371105 workaround during reset. This erratum applies |
| 607 | # to revision r0p0, r1p0 and r2p0 of the Cortex-X2 cpu and is fixed in r2p1. |
| 608 | ERRATA_X2_2371105 ?=0 |
| 609 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 610 | # Flag to apply erratum 1922240 workaround during reset. This erratum applies |
| 611 | # to revision r0p0 of the Cortex-A510 cpu and is fixed in r0p1. |
| 612 | ERRATA_A510_1922240 ?=0 |
| 613 | |
johpow01 | 49f60dd | 2022-01-06 14:54:49 -0600 | [diff] [blame] | 614 | # Flag to apply erratum 2288014 workaround during reset. This erratum applies |
| 615 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0 of the Cortex-A510 cpu and is |
| 616 | # fixed in r1p1. |
| 617 | ERRATA_A510_2288014 ?=0 |
| 618 | |
johpow01 | 8276f25 | 2022-01-07 17:12:31 -0600 | [diff] [blame] | 619 | # Flag to apply erratum 2042739 workaround during reset. This erratum applies |
| 620 | # to revisions r0p0, r0p1 and r0p2 of the Cortex-A510 cpu and is fixed in r0p3. |
| 621 | ERRATA_A510_2042739 ?=0 |
| 622 | |
johpow01 | 5a99300 | 2022-01-11 17:54:41 -0600 | [diff] [blame] | 623 | # Flag to apply erratum 2041909 workaround during reset. This erratum applies |
| 624 | # to revision r0p2 of the Cortex-A510 cpu and is fixed in r0p3. The issue is |
| 625 | # present in r0p0 and r0p1 but there is no workaround for those revisions. |
| 626 | ERRATA_A510_2041909 ?=0 |
| 627 | |
johpow01 | 3ba9cb2 | 2022-02-13 21:00:10 -0600 | [diff] [blame] | 628 | # Flag to apply erratum 2250311 workaround during reset. This erratum applies |
| 629 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0, and is fixed in r1p1. |
| 630 | ERRATA_A510_2250311 ?=0 |
| 631 | |
johpow01 | 3ead295 | 2022-02-14 20:19:08 -0600 | [diff] [blame] | 632 | # Flag to apply erratum 2218950 workaround during reset. This erratum applies |
| 633 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0, and is fixed in r1p1. |
| 634 | ERRATA_A510_2218950 ?=0 |
| 635 | |
johpow01 | ac55c01 | 2022-02-15 22:55:22 -0600 | [diff] [blame] | 636 | # Flag to apply erratum 2172148 workaround during reset. This erratum applies |
| 637 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0, and is fixed in r1p1. |
| 638 | ERRATA_A510_2172148 ?=0 |
| 639 | |
Louis Mayencourt | 4498b15 | 2019-04-09 16:29:01 +0100 | [diff] [blame] | 640 | # Flag to apply DSU erratum 798953. This erratum applies to DSUs revision r0p0. |
| 641 | # Applying the workaround results in higher DSU power consumption on idle. |
| 642 | ERRATA_DSU_798953 ?=0 |
| 643 | |
John Tsichritzis | 4daa1de | 2018-07-23 09:11:59 +0100 | [diff] [blame] | 644 | # Flag to apply DSU erratum 936184. This erratum applies to DSUs containing |
| 645 | # the ACP interface and revision < r2p0. Applying the workaround results in |
| 646 | # higher DSU power consumption on idle. |
| 647 | ERRATA_DSU_936184 ?=0 |
| 648 | |
Bipin Ravi | af40d69 | 2021-12-22 14:35:21 -0600 | [diff] [blame] | 649 | # Flag to apply DSU erratum 2313941. This erratum applies to DSUs revisions |
| 650 | # r0p0, r1p0, r2p0, r2p1, r3p0, r3p1 and is still open. Applying the workaround |
| 651 | # results in higher DSU power consumption on idle. |
| 652 | ERRATA_DSU_2313941 ?=0 |
| 653 | |
Joel Hutton | 26d1676 | 2019-04-10 12:52:52 +0100 | [diff] [blame] | 654 | # Process ERRATA_A9_794073 flag |
| 655 | $(eval $(call assert_boolean,ERRATA_A9_794073)) |
| 656 | $(eval $(call add_define,ERRATA_A9_794073)) |
| 657 | |
Ambroise Vincent | d4a51eb | 2019-03-04 16:56:26 +0000 | [diff] [blame] | 658 | # Process ERRATA_A15_816470 flag |
| 659 | $(eval $(call assert_boolean,ERRATA_A15_816470)) |
| 660 | $(eval $(call add_define,ERRATA_A15_816470)) |
| 661 | |
Ambroise Vincent | 68b3812 | 2019-03-05 09:54:21 +0000 | [diff] [blame] | 662 | # Process ERRATA_A15_827671 flag |
| 663 | $(eval $(call assert_boolean,ERRATA_A15_827671)) |
| 664 | $(eval $(call add_define,ERRATA_A15_827671)) |
| 665 | |
Ambroise Vincent | 8cf9eef | 2019-02-28 16:23:53 +0000 | [diff] [blame] | 666 | # Process ERRATA_A17_852421 flag |
| 667 | $(eval $(call assert_boolean,ERRATA_A17_852421)) |
| 668 | $(eval $(call add_define,ERRATA_A17_852421)) |
| 669 | |
Ambroise Vincent | fa5c951 | 2019-03-04 13:20:56 +0000 | [diff] [blame] | 670 | # Process ERRATA_A17_852423 flag |
| 671 | $(eval $(call assert_boolean,ERRATA_A17_852423)) |
| 672 | $(eval $(call add_define,ERRATA_A17_852423)) |
| 673 | |
Louis Mayencourt | 8a06127 | 2019-04-05 16:25:25 +0100 | [diff] [blame] | 674 | # Process ERRATA_A35_855472 flag |
| 675 | $(eval $(call assert_boolean,ERRATA_A35_855472)) |
| 676 | $(eval $(call add_define,ERRATA_A35_855472)) |
| 677 | |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 678 | # Process ERRATA_A53_819472 flag |
| 679 | $(eval $(call assert_boolean,ERRATA_A53_819472)) |
| 680 | $(eval $(call add_define,ERRATA_A53_819472)) |
| 681 | |
| 682 | # Process ERRATA_A53_824069 flag |
| 683 | $(eval $(call assert_boolean,ERRATA_A53_824069)) |
| 684 | $(eval $(call add_define,ERRATA_A53_824069)) |
| 685 | |
developer | 4fceaca | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 686 | # Process ERRATA_A53_826319 flag |
| 687 | $(eval $(call assert_boolean,ERRATA_A53_826319)) |
| 688 | $(eval $(call add_define,ERRATA_A53_826319)) |
| 689 | |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 690 | # Process ERRATA_A53_827319 flag |
| 691 | $(eval $(call assert_boolean,ERRATA_A53_827319)) |
| 692 | $(eval $(call add_define,ERRATA_A53_827319)) |
| 693 | |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 694 | # Process ERRATA_A53_835769 flag |
| 695 | $(eval $(call assert_boolean,ERRATA_A53_835769)) |
| 696 | $(eval $(call add_define,ERRATA_A53_835769)) |
| 697 | |
developer | 4fceaca | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 698 | # Process ERRATA_A53_836870 flag |
| 699 | $(eval $(call assert_boolean,ERRATA_A53_836870)) |
| 700 | $(eval $(call add_define,ERRATA_A53_836870)) |
| 701 | |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 702 | # Process ERRATA_A53_843419 flag |
| 703 | $(eval $(call assert_boolean,ERRATA_A53_843419)) |
| 704 | $(eval $(call add_define,ERRATA_A53_843419)) |
| 705 | |
Andre Przywara | 00eefd9 | 2016-10-06 16:54:53 +0100 | [diff] [blame] | 706 | # Process ERRATA_A53_855873 flag |
| 707 | $(eval $(call assert_boolean,ERRATA_A53_855873)) |
| 708 | $(eval $(call add_define,ERRATA_A53_855873)) |
| 709 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 710 | # Process ERRATA_A53_1530924 flag |
| 711 | $(eval $(call assert_boolean,ERRATA_A53_1530924)) |
| 712 | $(eval $(call add_define,ERRATA_A53_1530924)) |
| 713 | |
Ambroise Vincent | 7927fa0 | 2019-02-21 16:20:43 +0000 | [diff] [blame] | 714 | # Process ERRATA_A55_768277 flag |
| 715 | $(eval $(call assert_boolean,ERRATA_A55_768277)) |
| 716 | $(eval $(call add_define,ERRATA_A55_768277)) |
| 717 | |
Ambroise Vincent | 6f31960 | 2019-02-21 16:25:37 +0000 | [diff] [blame] | 718 | # Process ERRATA_A55_778703 flag |
| 719 | $(eval $(call assert_boolean,ERRATA_A55_778703)) |
| 720 | $(eval $(call add_define,ERRATA_A55_778703)) |
| 721 | |
Ambroise Vincent | 6a77f05 | 2019-02-21 16:27:34 +0000 | [diff] [blame] | 722 | # Process ERRATA_A55_798797 flag |
| 723 | $(eval $(call assert_boolean,ERRATA_A55_798797)) |
| 724 | $(eval $(call add_define,ERRATA_A55_798797)) |
| 725 | |
Ambroise Vincent | dd961f7 | 2019-02-21 16:29:16 +0000 | [diff] [blame] | 726 | # Process ERRATA_A55_846532 flag |
| 727 | $(eval $(call assert_boolean,ERRATA_A55_846532)) |
| 728 | $(eval $(call add_define,ERRATA_A55_846532)) |
| 729 | |
Ambroise Vincent | a1d6446 | 2019-02-21 16:29:50 +0000 | [diff] [blame] | 730 | # Process ERRATA_A55_903758 flag |
| 731 | $(eval $(call assert_boolean,ERRATA_A55_903758)) |
| 732 | $(eval $(call add_define,ERRATA_A55_903758)) |
| 733 | |
Ambroise Vincent | b72fe7a | 2019-05-28 09:52:48 +0100 | [diff] [blame] | 734 | # Process ERRATA_A55_1221012 flag |
| 735 | $(eval $(call assert_boolean,ERRATA_A55_1221012)) |
| 736 | $(eval $(call add_define,ERRATA_A55_1221012)) |
| 737 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 738 | # Process ERRATA_A55_1530923 flag |
| 739 | $(eval $(call assert_boolean,ERRATA_A55_1530923)) |
| 740 | $(eval $(call add_define,ERRATA_A55_1530923)) |
| 741 | |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 742 | # Process ERRATA_A57_806969 flag |
| 743 | $(eval $(call assert_boolean,ERRATA_A57_806969)) |
| 744 | $(eval $(call add_define,ERRATA_A57_806969)) |
| 745 | |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 746 | # Process ERRATA_A57_813419 flag |
| 747 | $(eval $(call assert_boolean,ERRATA_A57_813419)) |
| 748 | $(eval $(call add_define,ERRATA_A57_813419)) |
| 749 | |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 750 | # Process ERRATA_A57_813420 flag |
| 751 | $(eval $(call assert_boolean,ERRATA_A57_813420)) |
| 752 | $(eval $(call add_define,ERRATA_A57_813420)) |
Sandrine Bailleux | a7e0c53 | 2016-04-14 13:32:31 +0100 | [diff] [blame] | 753 | |
Ambroise Vincent | 1b0db76 | 2019-02-21 16:35:07 +0000 | [diff] [blame] | 754 | # Process ERRATA_A57_814670 flag |
| 755 | $(eval $(call assert_boolean,ERRATA_A57_814670)) |
| 756 | $(eval $(call add_define,ERRATA_A57_814670)) |
| 757 | |
Ambroise Vincent | aa2c029 | 2019-02-21 16:35:49 +0000 | [diff] [blame] | 758 | # Process ERRATA_A57_817169 flag |
| 759 | $(eval $(call assert_boolean,ERRATA_A57_817169)) |
| 760 | $(eval $(call add_define,ERRATA_A57_817169)) |
| 761 | |
Sandrine Bailleux | a7e0c53 | 2016-04-14 13:32:31 +0100 | [diff] [blame] | 762 | # Process ERRATA_A57_826974 flag |
| 763 | $(eval $(call assert_boolean,ERRATA_A57_826974)) |
| 764 | $(eval $(call add_define,ERRATA_A57_826974)) |
Sandrine Bailleux | c11116f | 2016-04-14 14:04:48 +0100 | [diff] [blame] | 765 | |
Sandrine Bailleux | adcbd55 | 2016-04-14 14:24:13 +0100 | [diff] [blame] | 766 | # Process ERRATA_A57_826977 flag |
| 767 | $(eval $(call assert_boolean,ERRATA_A57_826977)) |
| 768 | $(eval $(call add_define,ERRATA_A57_826977)) |
| 769 | |
Sandrine Bailleux | c11116f | 2016-04-14 14:04:48 +0100 | [diff] [blame] | 770 | # Process ERRATA_A57_828024 flag |
| 771 | $(eval $(call assert_boolean,ERRATA_A57_828024)) |
| 772 | $(eval $(call add_define,ERRATA_A57_828024)) |
Sandrine Bailleux | 48cbe85 | 2016-04-14 14:18:07 +0100 | [diff] [blame] | 773 | |
| 774 | # Process ERRATA_A57_829520 flag |
| 775 | $(eval $(call assert_boolean,ERRATA_A57_829520)) |
| 776 | $(eval $(call add_define,ERRATA_A57_829520)) |
Sandrine Bailleux | 143ef1a | 2016-04-21 11:10:52 +0100 | [diff] [blame] | 777 | |
| 778 | # Process ERRATA_A57_833471 flag |
| 779 | $(eval $(call assert_boolean,ERRATA_A57_833471)) |
| 780 | $(eval $(call add_define,ERRATA_A57_833471)) |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 781 | |
Eleanor Bonnici | 0c9bd27 | 2017-08-02 16:35:04 +0100 | [diff] [blame] | 782 | # Process ERRATA_A57_859972 flag |
| 783 | $(eval $(call assert_boolean,ERRATA_A57_859972)) |
| 784 | $(eval $(call add_define,ERRATA_A57_859972)) |
| 785 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 786 | # Process ERRATA_A57_1319537 flag |
| 787 | $(eval $(call assert_boolean,ERRATA_A57_1319537)) |
| 788 | $(eval $(call add_define,ERRATA_A57_1319537)) |
| 789 | |
Eleanor Bonnici | c3b4ca1 | 2017-08-02 18:33:41 +0100 | [diff] [blame] | 790 | # Process ERRATA_A72_859971 flag |
| 791 | $(eval $(call assert_boolean,ERRATA_A72_859971)) |
| 792 | $(eval $(call add_define,ERRATA_A72_859971)) |
| 793 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 794 | # Process ERRATA_A72_1319367 flag |
| 795 | $(eval $(call assert_boolean,ERRATA_A72_1319367)) |
| 796 | $(eval $(call add_define,ERRATA_A72_1319367)) |
| 797 | |
Louis Mayencourt | d69722c | 2019-02-27 14:24:16 +0000 | [diff] [blame] | 798 | # Process ERRATA_A73_852427 flag |
| 799 | $(eval $(call assert_boolean,ERRATA_A73_852427)) |
| 800 | $(eval $(call add_define,ERRATA_A73_852427)) |
| 801 | |
Louis Mayencourt | 4405de6 | 2019-02-21 16:38:16 +0000 | [diff] [blame] | 802 | # Process ERRATA_A73_855423 flag |
| 803 | $(eval $(call assert_boolean,ERRATA_A73_855423)) |
| 804 | $(eval $(call add_define,ERRATA_A73_855423)) |
| 805 | |
Louis Mayencourt | 78a0aed | 2019-02-20 12:11:41 +0000 | [diff] [blame] | 806 | # Process ERRATA_A75_764081 flag |
| 807 | $(eval $(call assert_boolean,ERRATA_A75_764081)) |
| 808 | $(eval $(call add_define,ERRATA_A75_764081)) |
| 809 | |
Louis Mayencourt | 8d86870 | 2019-02-25 14:57:57 +0000 | [diff] [blame] | 810 | # Process ERRATA_A75_790748 flag |
| 811 | $(eval $(call assert_boolean,ERRATA_A75_790748)) |
| 812 | $(eval $(call add_define,ERRATA_A75_790748)) |
| 813 | |
Louis Mayencourt | 59fa218 | 2019-02-25 15:17:44 +0000 | [diff] [blame] | 814 | # Process ERRATA_A76_1073348 flag |
| 815 | $(eval $(call assert_boolean,ERRATA_A76_1073348)) |
| 816 | $(eval $(call add_define,ERRATA_A76_1073348)) |
| 817 | |
Louis Mayencourt | 0992447 | 2019-02-21 17:35:07 +0000 | [diff] [blame] | 818 | # Process ERRATA_A76_1130799 flag |
| 819 | $(eval $(call assert_boolean,ERRATA_A76_1130799)) |
| 820 | $(eval $(call add_define,ERRATA_A76_1130799)) |
| 821 | |
Louis Mayencourt | adda9d4 | 2019-02-25 11:37:38 +0000 | [diff] [blame] | 822 | # Process ERRATA_A76_1220197 flag |
| 823 | $(eval $(call assert_boolean,ERRATA_A76_1220197)) |
| 824 | $(eval $(call add_define,ERRATA_A76_1220197)) |
| 825 | |
Soby Mathew | 1d3ba1c | 2019-05-01 09:43:18 +0100 | [diff] [blame] | 826 | # Process ERRATA_A76_1257314 flag |
| 827 | $(eval $(call assert_boolean,ERRATA_A76_1257314)) |
| 828 | $(eval $(call add_define,ERRATA_A76_1257314)) |
| 829 | |
| 830 | # Process ERRATA_A76_1262606 flag |
| 831 | $(eval $(call assert_boolean,ERRATA_A76_1262606)) |
| 832 | $(eval $(call add_define,ERRATA_A76_1262606)) |
| 833 | |
| 834 | # Process ERRATA_A76_1262888 flag |
| 835 | $(eval $(call assert_boolean,ERRATA_A76_1262888)) |
| 836 | $(eval $(call add_define,ERRATA_A76_1262888)) |
| 837 | |
| 838 | # Process ERRATA_A76_1275112 flag |
| 839 | $(eval $(call assert_boolean,ERRATA_A76_1275112)) |
| 840 | $(eval $(call add_define,ERRATA_A76_1275112)) |
| 841 | |
Soby Mathew | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 842 | # Process ERRATA_A76_1286807 flag |
| 843 | $(eval $(call assert_boolean,ERRATA_A76_1286807)) |
| 844 | $(eval $(call add_define,ERRATA_A76_1286807)) |
| 845 | |
johpow01 | 9603f98 | 2020-05-29 14:17:38 -0500 | [diff] [blame] | 846 | # Process ERRATA_A76_1791580 flag |
| 847 | $(eval $(call assert_boolean,ERRATA_A76_1791580)) |
| 848 | $(eval $(call add_define,ERRATA_A76_1791580)) |
| 849 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 850 | # Process ERRATA_A76_1165522 flag |
| 851 | $(eval $(call assert_boolean,ERRATA_A76_1165522)) |
| 852 | $(eval $(call add_define,ERRATA_A76_1165522)) |
| 853 | |
johpow01 | 81365e3 | 2020-09-29 17:19:09 -0500 | [diff] [blame] | 854 | # Process ERRATA_A76_1868343 flag |
| 855 | $(eval $(call assert_boolean,ERRATA_A76_1868343)) |
| 856 | $(eval $(call add_define,ERRATA_A76_1868343)) |
| 857 | |
johpow01 | 3e34e92 | 2020-12-15 19:02:18 -0600 | [diff] [blame] | 858 | # Process ERRATA_A76_1946160 flag |
| 859 | $(eval $(call assert_boolean,ERRATA_A76_1946160)) |
| 860 | $(eval $(call add_define,ERRATA_A76_1946160)) |
| 861 | |
laurenw-arm | 99ad976 | 2020-07-14 14:18:34 -0500 | [diff] [blame] | 862 | # Process ERRATA_A77_1508412 flag |
| 863 | $(eval $(call assert_boolean,ERRATA_A77_1508412)) |
| 864 | $(eval $(call add_define,ERRATA_A77_1508412)) |
| 865 | |
johpow01 | a2fa12c | 2020-09-10 13:39:26 -0500 | [diff] [blame] | 866 | # Process ERRATA_A77_1925769 flag |
| 867 | $(eval $(call assert_boolean,ERRATA_A77_1925769)) |
| 868 | $(eval $(call add_define,ERRATA_A77_1925769)) |
| 869 | |
laurenw-arm | f5dbbef | 2021-03-23 13:09:35 -0500 | [diff] [blame] | 870 | # Process ERRATA_A77_1946167 flag |
| 871 | $(eval $(call assert_boolean,ERRATA_A77_1946167)) |
| 872 | $(eval $(call add_define,ERRATA_A77_1946167)) |
| 873 | |
johpow01 | eb14610 | 2021-05-03 13:37:13 -0500 | [diff] [blame] | 874 | # Process ERRATA_A77_1791578 flag |
| 875 | $(eval $(call assert_boolean,ERRATA_A77_1791578)) |
| 876 | $(eval $(call add_define,ERRATA_A77_1791578)) |
| 877 | |
Bipin Ravi | 8e91662 | 2022-06-08 15:27:00 -0500 | [diff] [blame] | 878 | # Process ERRATA_A77_2356587 flag |
| 879 | $(eval $(call assert_boolean,ERRATA_A77_2356587)) |
| 880 | $(eval $(call add_define,ERRATA_A77_2356587)) |
| 881 | |
Jimmy Brisson | 3571fb9 | 2020-06-01 10:18:22 -0500 | [diff] [blame] | 882 | # Process ERRATA_A78_1688305 flag |
| 883 | $(eval $(call assert_boolean,ERRATA_A78_1688305)) |
| 884 | $(eval $(call add_define,ERRATA_A78_1688305)) |
Madhukar Pappireddy | 4efede7 | 2019-12-18 15:56:27 -0600 | [diff] [blame] | 885 | |
johpow01 | 9131eb8 | 2020-10-06 17:55:25 -0500 | [diff] [blame] | 886 | # Process ERRATA_A78_1941498 flag |
| 887 | $(eval $(call assert_boolean,ERRATA_A78_1941498)) |
| 888 | $(eval $(call add_define,ERRATA_A78_1941498)) |
| 889 | |
johpow01 | 85ea43d | 2020-10-07 15:08:01 -0500 | [diff] [blame] | 890 | # Process ERRATA_A78_1951500 flag |
| 891 | $(eval $(call assert_boolean,ERRATA_A78_1951500)) |
| 892 | $(eval $(call add_define,ERRATA_A78_1951500)) |
| 893 | |
johpow01 | b3e8294 | 2021-04-30 18:08:52 -0500 | [diff] [blame] | 894 | # Process ERRATA_A78_1821534 flag |
| 895 | $(eval $(call assert_boolean,ERRATA_A78_1821534)) |
| 896 | $(eval $(call add_define,ERRATA_A78_1821534)) |
| 897 | |
nayanpatel-arm | 80bf7a5 | 2021-08-11 13:33:00 -0700 | [diff] [blame] | 898 | # Process ERRATA_A78_1952683 flag |
| 899 | $(eval $(call assert_boolean,ERRATA_A78_1952683)) |
| 900 | $(eval $(call add_define,ERRATA_A78_1952683)) |
| 901 | |
nayanpatel-arm | 39e0865 | 2021-09-28 17:31:50 -0700 | [diff] [blame] | 902 | # Process ERRATA_A78_2132060 flag |
| 903 | $(eval $(call assert_boolean,ERRATA_A78_2132060)) |
| 904 | $(eval $(call add_define,ERRATA_A78_2132060)) |
| 905 | |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 906 | # Process ERRATA_A78_2242635 flag |
| 907 | $(eval $(call assert_boolean,ERRATA_A78_2242635)) |
| 908 | $(eval $(call add_define,ERRATA_A78_2242635)) |
| 909 | |
John Powell | 12bc0de | 2022-05-03 15:22:57 -0500 | [diff] [blame] | 910 | # Process ERRATA_A78_2376745 flag |
| 911 | $(eval $(call assert_boolean,ERRATA_A78_2376745)) |
| 912 | $(eval $(call add_define,ERRATA_A78_2376745)) |
| 913 | |
John Powell | a93b7e5 | 2022-05-03 15:52:11 -0500 | [diff] [blame] | 914 | # Process ERRATA_A78_2395406 flag |
| 915 | $(eval $(call assert_boolean,ERRATA_A78_2395406)) |
| 916 | $(eval $(call add_define,ERRATA_A78_2395406)) |
| 917 | |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 918 | # Process ERRATA_A78_AE_1941500 flag |
| 919 | $(eval $(call assert_boolean,ERRATA_A78_AE_1941500)) |
| 920 | $(eval $(call add_define,ERRATA_A78_AE_1941500)) |
| 921 | |
| 922 | # Process ERRATA_A78_AE_1951502 flag |
| 923 | $(eval $(call assert_boolean,ERRATA_A78_AE_1951502)) |
| 924 | $(eval $(call add_define,ERRATA_A78_AE_1951502)) |
| 925 | |
Varun Wadekar | 9030a6c | 2022-03-09 22:04:00 +0000 | [diff] [blame] | 926 | # Process ERRATA_A78_AE_2376748 flag |
| 927 | $(eval $(call assert_boolean,ERRATA_A78_AE_2376748)) |
| 928 | $(eval $(call add_define,ERRATA_A78_AE_2376748)) |
| 929 | |
Varun Wadekar | ac6bf2e | 2022-03-09 22:20:32 +0000 | [diff] [blame] | 930 | # Process ERRATA_A78_AE_2395408 flag |
| 931 | $(eval $(call assert_boolean,ERRATA_A78_AE_2395408)) |
| 932 | $(eval $(call add_define,ERRATA_A78_AE_2395408)) |
| 933 | |
laurenw-arm | 4dc1887 | 2022-07-12 10:43:52 -0500 | [diff] [blame] | 934 | # Process ERRATA_A78C_2132064 flag |
| 935 | $(eval $(call assert_boolean,ERRATA_A78C_2132064)) |
| 936 | $(eval $(call add_define,ERRATA_A78C_2132064)) |
| 937 | |
Bipin Ravi | 9c36e12 | 2022-07-15 17:20:16 -0500 | [diff] [blame] | 938 | # Process ERRATA_A78C_2242638 flag |
| 939 | $(eval $(call assert_boolean,ERRATA_A78C_2242638)) |
| 940 | $(eval $(call add_define,ERRATA_A78C_2242638)) |
| 941 | |
Okash Khawaja | baee390 | 2022-04-21 12:20:21 +0100 | [diff] [blame] | 942 | # Process ERRATA_X1_1821534 flag |
| 943 | $(eval $(call assert_boolean,ERRATA_X1_1821534)) |
| 944 | $(eval $(call add_define,ERRATA_X1_1821534)) |
| 945 | |
| 946 | # Process ERRATA_X1_1688305 flag |
| 947 | $(eval $(call assert_boolean,ERRATA_X1_1688305)) |
| 948 | $(eval $(call add_define,ERRATA_X1_1688305)) |
| 949 | |
| 950 | # Process ERRATA_X1_1827429 flag |
| 951 | $(eval $(call assert_boolean,ERRATA_X1_1827429)) |
| 952 | $(eval $(call add_define,ERRATA_X1_1827429)) |
| 953 | |
John Tsichritzis | 56369c1 | 2019-02-19 13:49:06 +0000 | [diff] [blame] | 954 | # Process ERRATA_N1_1043202 flag |
| 955 | $(eval $(call assert_boolean,ERRATA_N1_1043202)) |
| 956 | $(eval $(call add_define,ERRATA_N1_1043202)) |
Dimitris Papastamos | 7ca21db | 2018-03-26 16:46:01 +0100 | [diff] [blame] | 957 | |
lauwal01 | bd555f4 | 2019-06-24 11:23:50 -0500 | [diff] [blame] | 958 | # Process ERRATA_N1_1073348 flag |
| 959 | $(eval $(call assert_boolean,ERRATA_N1_1073348)) |
| 960 | $(eval $(call add_define,ERRATA_N1_1073348)) |
| 961 | |
lauwal01 | 363ee3c | 2019-06-24 11:28:34 -0500 | [diff] [blame] | 962 | # Process ERRATA_N1_1130799 flag |
| 963 | $(eval $(call assert_boolean,ERRATA_N1_1130799)) |
| 964 | $(eval $(call add_define,ERRATA_N1_1130799)) |
| 965 | |
lauwal01 | f2adb13 | 2019-06-24 11:32:40 -0500 | [diff] [blame] | 966 | # Process ERRATA_N1_1165347 flag |
| 967 | $(eval $(call assert_boolean,ERRATA_N1_1165347)) |
| 968 | $(eval $(call add_define,ERRATA_N1_1165347)) |
| 969 | |
lauwal01 | e159044 | 2019-06-24 11:35:37 -0500 | [diff] [blame] | 970 | # Process ERRATA_N1_1207823 flag |
| 971 | $(eval $(call assert_boolean,ERRATA_N1_1207823)) |
| 972 | $(eval $(call add_define,ERRATA_N1_1207823)) |
| 973 | |
lauwal01 | 197f14c | 2019-06-24 11:38:53 -0500 | [diff] [blame] | 974 | # Process ERRATA_N1_1220197 flag |
| 975 | $(eval $(call assert_boolean,ERRATA_N1_1220197)) |
| 976 | $(eval $(call add_define,ERRATA_N1_1220197)) |
| 977 | |
lauwal01 | 07c2a23 | 2019-06-24 11:42:02 -0500 | [diff] [blame] | 978 | # Process ERRATA_N1_1257314 flag |
| 979 | $(eval $(call assert_boolean,ERRATA_N1_1257314)) |
| 980 | $(eval $(call add_define,ERRATA_N1_1257314)) |
| 981 | |
lauwal01 | 42771af | 2019-06-24 11:44:58 -0500 | [diff] [blame] | 982 | # Process ERRATA_N1_1262606 flag |
| 983 | $(eval $(call assert_boolean,ERRATA_N1_1262606)) |
| 984 | $(eval $(call add_define,ERRATA_N1_1262606)) |
| 985 | |
lauwal01 | 00396bf | 2019-06-24 11:47:30 -0500 | [diff] [blame] | 986 | # Process ERRATA_N1_1262888 flag |
| 987 | $(eval $(call assert_boolean,ERRATA_N1_1262888)) |
| 988 | $(eval $(call add_define,ERRATA_N1_1262888)) |
| 989 | |
lauwal01 | 644b6ed | 2019-06-24 11:49:01 -0500 | [diff] [blame] | 990 | # Process ERRATA_N1_1275112 flag |
| 991 | $(eval $(call assert_boolean,ERRATA_N1_1275112)) |
| 992 | $(eval $(call add_define,ERRATA_N1_1275112)) |
| 993 | |
Andre Przywara | b934740 | 2019-05-20 14:57:06 +0100 | [diff] [blame] | 994 | # Process ERRATA_N1_1315703 flag |
| 995 | $(eval $(call assert_boolean,ERRATA_N1_1315703)) |
| 996 | $(eval $(call add_define,ERRATA_N1_1315703)) |
| 997 | |
laurenw-arm | 94accd3 | 2019-08-20 15:51:24 -0500 | [diff] [blame] | 998 | # Process ERRATA_N1_1542419 flag |
| 999 | $(eval $(call assert_boolean,ERRATA_N1_1542419)) |
| 1000 | $(eval $(call add_define,ERRATA_N1_1542419)) |
| 1001 | |
johpow01 | e2428fd | 2020-08-05 12:27:12 -0500 | [diff] [blame] | 1002 | # Process ERRATA_N1_1868343 flag |
| 1003 | $(eval $(call assert_boolean,ERRATA_N1_1868343)) |
| 1004 | $(eval $(call add_define,ERRATA_N1_1868343)) |
| 1005 | |
johpow01 | f1a84f5 | 2020-10-07 14:33:15 -0500 | [diff] [blame] | 1006 | # Process ERRATA_N1_1946160 flag |
| 1007 | $(eval $(call assert_boolean,ERRATA_N1_1946160)) |
| 1008 | $(eval $(call add_define,ERRATA_N1_1946160)) |
| 1009 | |
nayanpatel-arm | 277581e | 2021-08-06 17:46:10 -0700 | [diff] [blame] | 1010 | # Process ERRATA_N2_2002655 flag |
| 1011 | $(eval $(call assert_boolean,ERRATA_N2_2002655)) |
| 1012 | $(eval $(call add_define,ERRATA_N2_2002655)) |
| 1013 | |
laurenw-arm | 3c86d83 | 2021-08-02 13:22:32 -0500 | [diff] [blame] | 1014 | # Process ERRATA_V1_1774420 flag |
| 1015 | $(eval $(call assert_boolean,ERRATA_V1_1774420)) |
| 1016 | $(eval $(call add_define,ERRATA_V1_1774420)) |
| 1017 | |
johpow01 | c73b03c | 2021-05-03 15:33:39 -0500 | [diff] [blame] | 1018 | # Process ERRATA_V1_1791573 flag |
| 1019 | $(eval $(call assert_boolean,ERRATA_V1_1791573)) |
| 1020 | $(eval $(call add_define,ERRATA_V1_1791573)) |
| 1021 | |
laurenw-arm | b1923e9 | 2021-08-02 14:40:08 -0500 | [diff] [blame] | 1022 | # Process ERRATA_V1_1852267 flag |
| 1023 | $(eval $(call assert_boolean,ERRATA_V1_1852267)) |
| 1024 | $(eval $(call add_define,ERRATA_V1_1852267)) |
| 1025 | |
laurenw-arm | 6b56f96 | 2021-08-02 15:00:15 -0500 | [diff] [blame] | 1026 | # Process ERRATA_V1_1925756 flag |
| 1027 | $(eval $(call assert_boolean,ERRATA_V1_1925756)) |
| 1028 | $(eval $(call add_define,ERRATA_V1_1925756)) |
| 1029 | |
johpow01 | 07acb4f | 2020-10-07 16:38:37 -0500 | [diff] [blame] | 1030 | # Process ERRATA_V1_1940577 flag |
| 1031 | $(eval $(call assert_boolean,ERRATA_V1_1940577)) |
| 1032 | $(eval $(call add_define,ERRATA_V1_1940577)) |
| 1033 | |
johpow01 | 97db675 | 2021-08-02 18:59:08 -0500 | [diff] [blame] | 1034 | # Process ERRATA_V1_1966096 flag |
| 1035 | $(eval $(call assert_boolean,ERRATA_V1_1966096)) |
| 1036 | $(eval $(call add_define,ERRATA_V1_1966096)) |
| 1037 | |
johpow01 | ad1ca34 | 2021-08-03 14:35:20 -0500 | [diff] [blame] | 1038 | # Process ERRATA_V1_2139242 flag |
| 1039 | $(eval $(call assert_boolean,ERRATA_V1_2139242)) |
| 1040 | $(eval $(call add_define,ERRATA_V1_2139242)) |
| 1041 | |
nayanpatel-arm | fc26ffe | 2021-09-28 13:41:03 -0700 | [diff] [blame] | 1042 | # Process ERRATA_V1_2108267 flag |
| 1043 | $(eval $(call assert_boolean,ERRATA_V1_2108267)) |
| 1044 | $(eval $(call add_define,ERRATA_V1_2108267)) |
| 1045 | |
johpow01 | 4de29cb | 2021-09-02 18:29:17 -0500 | [diff] [blame] | 1046 | # Process ERRATA_V1_2216392 flag |
| 1047 | $(eval $(call assert_boolean,ERRATA_V1_2216392)) |
| 1048 | $(eval $(call add_define,ERRATA_V1_2216392)) |
| 1049 | |
Bipin Ravi | 971938f | 2022-06-08 16:28:46 -0500 | [diff] [blame] | 1050 | # Process ERRATA_V1_2294912 flag |
| 1051 | $(eval $(call assert_boolean,ERRATA_V1_2294912)) |
| 1052 | $(eval $(call add_define,ERRATA_V1_2294912)) |
| 1053 | |
Bipin Ravi | b4cb31f | 2022-06-14 17:09:23 -0500 | [diff] [blame] | 1054 | # Process ERRATA_V1_2372203 flag |
| 1055 | $(eval $(call assert_boolean,ERRATA_V1_2372203)) |
| 1056 | $(eval $(call add_define,ERRATA_V1_2372203)) |
| 1057 | |
nayanpatel-arm | e55d325 | 2021-08-06 16:39:48 -0700 | [diff] [blame] | 1058 | # Process ERRATA_A710_1987031 flag |
| 1059 | $(eval $(call assert_boolean,ERRATA_A710_1987031)) |
| 1060 | $(eval $(call add_define,ERRATA_A710_1987031)) |
| 1061 | |
nayanpatel-arm | 7597d08 | 2021-08-25 17:35:15 -0700 | [diff] [blame] | 1062 | # Process ERRATA_A710_2081180 flag |
| 1063 | $(eval $(call assert_boolean,ERRATA_A710_2081180)) |
| 1064 | $(eval $(call add_define,ERRATA_A710_2081180)) |
| 1065 | |
nayanpatel-arm | 0b338b4 | 2021-09-16 15:27:53 -0700 | [diff] [blame] | 1066 | # Process ERRATA_A710_2083908 flag |
| 1067 | $(eval $(call assert_boolean,ERRATA_A710_2083908)) |
| 1068 | $(eval $(call add_define,ERRATA_A710_2083908)) |
| 1069 | |
nayanpatel-arm | f2dce0e | 2021-09-22 12:35:03 -0700 | [diff] [blame] | 1070 | # Process ERRATA_A710_2058056 flag |
| 1071 | $(eval $(call assert_boolean,ERRATA_A710_2058056)) |
| 1072 | $(eval $(call add_define,ERRATA_A710_2058056)) |
| 1073 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 1074 | # Process ERRATA_A710_2055002 flag |
| 1075 | $(eval $(call assert_boolean,ERRATA_A710_2055002)) |
| 1076 | $(eval $(call add_define,ERRATA_A710_2055002)) |
| 1077 | |
| 1078 | # Process ERRATA_A710_2017096 flag |
| 1079 | $(eval $(call assert_boolean,ERRATA_A710_2017096)) |
| 1080 | $(eval $(call add_define,ERRATA_A710_2017096)) |
| 1081 | |
| 1082 | # Process ERRATA_A710_2267065 flag |
| 1083 | $(eval $(call assert_boolean,ERRATA_A710_2267065)) |
| 1084 | $(eval $(call add_define,ERRATA_A710_2267065)) |
| 1085 | |
| 1086 | # Process ERRATA_A710_2136059 flag |
| 1087 | $(eval $(call assert_boolean,ERRATA_A710_2136059)) |
| 1088 | $(eval $(call add_define,ERRATA_A710_2136059)) |
| 1089 | |
johpow01 | 7249fd0 | 2022-02-28 18:34:04 -0600 | [diff] [blame] | 1090 | # Process ERRATA_A710_2282622 flag |
| 1091 | $(eval $(call assert_boolean,ERRATA_A710_2282622)) |
| 1092 | $(eval $(call add_define,ERRATA_A710_2282622)) |
| 1093 | |
johpow01 | 7d52a8f | 2022-03-09 16:23:04 -0600 | [diff] [blame] | 1094 | # Process ERRATA_A710_2008768 flag |
| 1095 | $(eval $(call assert_boolean,ERRATA_A710_2008768)) |
| 1096 | $(eval $(call add_define,ERRATA_A710_2008768)) |
| 1097 | |
Bipin Ravi | 77eab29 | 2022-07-12 15:53:21 -0500 | [diff] [blame] | 1098 | # Process ERRATA_A710_2371105 flag |
| 1099 | $(eval $(call assert_boolean,ERRATA_A710_2371105)) |
| 1100 | $(eval $(call add_define,ERRATA_A710_2371105)) |
| 1101 | |
Bipin Ravi | eb35e85 | 2021-03-30 16:08:32 -0500 | [diff] [blame] | 1102 | # Process ERRATA_N2_2067956 flag |
| 1103 | $(eval $(call assert_boolean,ERRATA_N2_2067956)) |
| 1104 | $(eval $(call add_define,ERRATA_N2_2067956)) |
| 1105 | |
Bipin Ravi | 7f56547 | 2021-03-31 10:10:27 -0500 | [diff] [blame] | 1106 | # Process ERRATA_N2_2025414 flag |
| 1107 | $(eval $(call assert_boolean,ERRATA_N2_2025414)) |
| 1108 | $(eval $(call add_define,ERRATA_N2_2025414)) |
| 1109 | |
Bipin Ravi | 7e03069 | 2021-08-30 13:02:51 -0500 | [diff] [blame] | 1110 | # Process ERRATA_N2_2189731 flag |
| 1111 | $(eval $(call assert_boolean,ERRATA_N2_2189731)) |
| 1112 | $(eval $(call add_define,ERRATA_N2_2189731)) |
| 1113 | |
Bipin Ravi | 0ba631c | 2021-09-01 01:36:43 -0500 | [diff] [blame] | 1114 | # Process ERRATA_N2_2138956 flag |
| 1115 | $(eval $(call assert_boolean,ERRATA_N2_2138956)) |
| 1116 | $(eval $(call add_define,ERRATA_N2_2138956)) |
| 1117 | |
nayanpatel-arm | d4c5f9c | 2021-09-28 09:46:45 -0700 | [diff] [blame] | 1118 | # Process ERRATA_N2_2138953 flag |
| 1119 | $(eval $(call assert_boolean,ERRATA_N2_2138953)) |
| 1120 | $(eval $(call add_define,ERRATA_N2_2138953)) |
| 1121 | |
nayanpatel-arm | 2f15399 | 2021-10-06 15:31:24 -0700 | [diff] [blame] | 1122 | # Process ERRATA_N2_2242415 flag |
| 1123 | $(eval $(call assert_boolean,ERRATA_N2_2242415)) |
| 1124 | $(eval $(call add_define,ERRATA_N2_2242415)) |
| 1125 | |
nayanpatel-arm | 8e1aa01 | 2021-10-20 18:28:58 -0700 | [diff] [blame] | 1126 | # Process ERRATA_N2_2138958 flag |
| 1127 | $(eval $(call assert_boolean,ERRATA_N2_2138958)) |
| 1128 | $(eval $(call add_define,ERRATA_N2_2138958)) |
| 1129 | |
nayanpatel-arm | fed9813 | 2021-10-07 17:59:33 -0700 | [diff] [blame] | 1130 | # Process ERRATA_N2_2242400 flag |
| 1131 | $(eval $(call assert_boolean,ERRATA_N2_2242400)) |
| 1132 | $(eval $(call add_define,ERRATA_N2_2242400)) |
| 1133 | |
nayanpatel-arm | 45b9f6f | 2021-10-20 17:30:46 -0700 | [diff] [blame] | 1134 | # Process ERRATA_N2_2280757 flag |
| 1135 | $(eval $(call assert_boolean,ERRATA_N2_2280757)) |
| 1136 | $(eval $(call add_define,ERRATA_N2_2280757)) |
| 1137 | |
Daniel Boulby | 1af2b11 | 2022-07-06 14:33:13 +0100 | [diff] [blame] | 1138 | # Process ERRATA_N2_2388450 flag |
| 1139 | $(eval $(call assert_boolean,ERRATA_N2_2388450)) |
| 1140 | $(eval $(call add_define,ERRATA_N2_2388450)) |
| 1141 | |
johpow01 | 0afef36 | 2021-12-02 13:25:50 -0600 | [diff] [blame] | 1142 | # Process ERRATA_X2_2002765 flag |
| 1143 | $(eval $(call assert_boolean,ERRATA_X2_2002765)) |
| 1144 | $(eval $(call add_define,ERRATA_X2_2002765)) |
| 1145 | |
johpow01 | f6c37de | 2021-12-03 11:27:33 -0600 | [diff] [blame] | 1146 | # Process ERRATA_X2_2058056 flag |
| 1147 | $(eval $(call assert_boolean,ERRATA_X2_2058056)) |
| 1148 | $(eval $(call add_define,ERRATA_X2_2058056)) |
| 1149 | |
johpow01 | 15f10bd | 2021-12-01 17:40:39 -0600 | [diff] [blame] | 1150 | # Process ERRATA_X2_2083908 flag |
| 1151 | $(eval $(call assert_boolean,ERRATA_X2_2083908)) |
| 1152 | $(eval $(call add_define,ERRATA_X2_2083908)) |
| 1153 | |
Bipin Ravi | 2f73d97 | 2022-01-20 00:01:04 -0600 | [diff] [blame] | 1154 | # Process ERRATA_X2_2017096 flag |
| 1155 | $(eval $(call assert_boolean,ERRATA_X2_2017096)) |
| 1156 | $(eval $(call add_define,ERRATA_X2_2017096)) |
| 1157 | |
Bipin Ravi | 9ad5478 | 2022-01-20 00:42:05 -0600 | [diff] [blame] | 1158 | # Process ERRATA_X2_2081180 flag |
| 1159 | $(eval $(call assert_boolean,ERRATA_X2_2081180)) |
| 1160 | $(eval $(call add_define,ERRATA_X2_2081180)) |
| 1161 | |
Bipin Ravi | 78b7208 | 2022-02-06 01:29:31 -0600 | [diff] [blame] | 1162 | # Process ERRATA_X2_2216384 flag |
| 1163 | $(eval $(call assert_boolean,ERRATA_X2_2216384)) |
| 1164 | $(eval $(call add_define,ERRATA_X2_2216384)) |
| 1165 | |
Bipin Ravi | c6b6521 | 2022-03-08 10:37:43 -0600 | [diff] [blame] | 1166 | # Process ERRATA_X2_2147715 flag |
| 1167 | $(eval $(call assert_boolean,ERRATA_X2_2147715)) |
| 1168 | $(eval $(call add_define,ERRATA_X2_2147715)) |
| 1169 | |
Bipin Ravi | 4e315c3 | 2022-07-12 17:13:01 -0500 | [diff] [blame] | 1170 | # Process ERRATA_X2_2371105 flag |
| 1171 | $(eval $(call assert_boolean,ERRATA_X2_2371105)) |
| 1172 | $(eval $(call add_define,ERRATA_X2_2371105)) |
| 1173 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 1174 | # Process ERRATA_A510_1922240 flag |
| 1175 | $(eval $(call assert_boolean,ERRATA_A510_1922240)) |
| 1176 | $(eval $(call add_define,ERRATA_A510_1922240)) |
| 1177 | |
johpow01 | 49f60dd | 2022-01-06 14:54:49 -0600 | [diff] [blame] | 1178 | # Process ERRATA_A510_2288014 flag |
| 1179 | $(eval $(call assert_boolean,ERRATA_A510_2288014)) |
| 1180 | $(eval $(call add_define,ERRATA_A510_2288014)) |
| 1181 | |
johpow01 | 8276f25 | 2022-01-07 17:12:31 -0600 | [diff] [blame] | 1182 | # Process ERRATA_A510_2042739 flag |
| 1183 | $(eval $(call assert_boolean,ERRATA_A510_2042739)) |
| 1184 | $(eval $(call add_define,ERRATA_A510_2042739)) |
| 1185 | |
johpow01 | 5a99300 | 2022-01-11 17:54:41 -0600 | [diff] [blame] | 1186 | # Process ERRATA_A510_2041909 flag |
| 1187 | $(eval $(call assert_boolean,ERRATA_A510_2041909)) |
| 1188 | $(eval $(call add_define,ERRATA_A510_2041909)) |
| 1189 | |
johpow01 | 3ba9cb2 | 2022-02-13 21:00:10 -0600 | [diff] [blame] | 1190 | # Process ERRATA_A510_2250311 flag |
| 1191 | $(eval $(call assert_boolean,ERRATA_A510_2250311)) |
| 1192 | $(eval $(call add_define,ERRATA_A510_2250311)) |
| 1193 | |
johpow01 | 3ead295 | 2022-02-14 20:19:08 -0600 | [diff] [blame] | 1194 | # Process ERRATA_A510_2218950 flag |
| 1195 | $(eval $(call assert_boolean,ERRATA_A510_2218950)) |
| 1196 | $(eval $(call add_define,ERRATA_A510_2218950)) |
| 1197 | |
johpow01 | ac55c01 | 2022-02-15 22:55:22 -0600 | [diff] [blame] | 1198 | # Process ERRATA_A510_2172148 flag |
| 1199 | $(eval $(call assert_boolean,ERRATA_A510_2172148)) |
| 1200 | $(eval $(call add_define,ERRATA_A510_2172148)) |
| 1201 | |
Louis Mayencourt | 4498b15 | 2019-04-09 16:29:01 +0100 | [diff] [blame] | 1202 | # Process ERRATA_DSU_798953 flag |
| 1203 | $(eval $(call assert_boolean,ERRATA_DSU_798953)) |
| 1204 | $(eval $(call add_define,ERRATA_DSU_798953)) |
| 1205 | |
John Tsichritzis | 4daa1de | 2018-07-23 09:11:59 +0100 | [diff] [blame] | 1206 | # Process ERRATA_DSU_936184 flag |
| 1207 | $(eval $(call assert_boolean,ERRATA_DSU_936184)) |
| 1208 | $(eval $(call add_define,ERRATA_DSU_936184)) |
| 1209 | |
Bipin Ravi | af40d69 | 2021-12-22 14:35:21 -0600 | [diff] [blame] | 1210 | # Process ERRATA_DSU_2313941 flag |
| 1211 | $(eval $(call assert_boolean,ERRATA_DSU_2313941)) |
| 1212 | $(eval $(call add_define,ERRATA_DSU_2313941)) |
| 1213 | |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 1214 | # Errata build flags |
| 1215 | ifneq (${ERRATA_A53_843419},0) |
Douglas Raillard | d0c8273 | 2017-06-22 14:44:48 +0100 | [diff] [blame] | 1216 | TF_LDFLAGS_aarch64 += --fix-cortex-a53-843419 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 1217 | endif |
| 1218 | |
| 1219 | ifneq (${ERRATA_A53_835769},0) |
| 1220 | TF_CFLAGS_aarch64 += -mfix-cortex-a53-835769 |
Douglas Raillard | d0c8273 | 2017-06-22 14:44:48 +0100 | [diff] [blame] | 1221 | TF_LDFLAGS_aarch64 += --fix-cortex-a53-835769 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 1222 | endif |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 1223 | |
| 1224 | ifneq ($(filter 1,${ERRATA_A53_1530924} ${ERRATA_A55_1530923} \ |
| 1225 | ${ERRATA_A57_1319537} ${ERRATA_A72_1319367} ${ERRATA_A76_1165522}),) |
| 1226 | ERRATA_SPECULATIVE_AT := 1 |
| 1227 | else |
| 1228 | ERRATA_SPECULATIVE_AT := 0 |
| 1229 | endif |