Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 1 | # |
Bipin Ravi | 7dccf8f | 2022-12-22 14:19:59 -0600 | [diff] [blame] | 2 | # Copyright (c) 2014-2023, 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 | |
Bipin Ravi | 23e29e4 | 2022-11-02 16:50:03 -0500 | [diff] [blame] | 290 | # Flag to apply erratum 2743102 workaround during powerdown. This erratum |
| 291 | # applies to all revisions <= r4p1 of the Cortex A76 cpu and is still open. |
| 292 | ERRATA_A76_2743102 ?=0 |
| 293 | |
laurenw-arm | 99ad976 | 2020-07-14 14:18:34 -0500 | [diff] [blame] | 294 | # Flag to apply erratum 1508412 workaround during reset. This erratum applies |
| 295 | # only to revision <= r1p0 of the Cortex A77 cpu. |
| 296 | ERRATA_A77_1508412 ?=0 |
| 297 | |
johpow01 | a2fa12c | 2020-09-10 13:39:26 -0500 | [diff] [blame] | 298 | # Flag to apply erratum 1925769 workaround during reset. This erratum applies |
| 299 | # only to revision <= r1p1 of the Cortex A77 cpu. |
| 300 | ERRATA_A77_1925769 ?=0 |
| 301 | |
laurenw-arm | f5dbbef | 2021-03-23 13:09:35 -0500 | [diff] [blame] | 302 | # Flag to apply erratum 1946167 workaround during reset. This erratum applies |
| 303 | # only to revision <= r1p1 of the Cortex A77 cpu. |
| 304 | ERRATA_A77_1946167 ?=0 |
| 305 | |
johpow01 | eb14610 | 2021-05-03 13:37:13 -0500 | [diff] [blame] | 306 | # Flag to apply erratum 1791578 workaround during reset. This erratum applies |
| 307 | # to revisions r0p0, r1p0, and r1p1, it is still open. |
| 308 | ERRATA_A77_1791578 ?=0 |
| 309 | |
Bipin Ravi | 8e91662 | 2022-06-08 15:27:00 -0500 | [diff] [blame] | 310 | # Flag to apply erratum 2356587 workaround during reset. This erratum applies |
| 311 | # to revisions r0p0, r1p0, and r1p1, it is still open. |
| 312 | ERRATA_A77_2356587 ?=0 |
| 313 | |
Boyan Karatotev | e5cf16b | 2022-09-27 10:37:54 +0100 | [diff] [blame] | 314 | # Flag to apply erratum 1800714 workaround during reset. This erratum applies |
| 315 | # to revisions <= r1p1 of the Cortex A77 cpu. |
| 316 | ERRATA_A77_1800714 ?=0 |
| 317 | |
Boyan Karatotev | aaf5d29 | 2022-11-01 11:22:12 +0000 | [diff] [blame] | 318 | # Flag to apply erratum 2743100 workaround during power down. This erratum |
| 319 | # applies to revisions r0p0, r1p0, and r1p1, it is still open. |
| 320 | ERRATA_A77_2743100 ?=0 |
| 321 | |
Madhukar Pappireddy | 4efede7 | 2019-12-18 15:56:27 -0600 | [diff] [blame] | 322 | # Flag to apply erratum 1688305 workaround during reset. This erratum applies |
Jimmy Brisson | 3571fb9 | 2020-06-01 10:18:22 -0500 | [diff] [blame] | 323 | # to revisions r0p0 - r1p0 of the A78 cpu. |
| 324 | ERRATA_A78_1688305 ?=0 |
Madhukar Pappireddy | 4efede7 | 2019-12-18 15:56:27 -0600 | [diff] [blame] | 325 | |
johpow01 | 9131eb8 | 2020-10-06 17:55:25 -0500 | [diff] [blame] | 326 | # Flag to apply erratum 1941498 workaround during reset. This erratum applies |
| 327 | # to revisions r0p0, r1p0, and r1p1 of the A78 cpu. |
| 328 | ERRATA_A78_1941498 ?=0 |
| 329 | |
johpow01 | 85ea43d | 2020-10-07 15:08:01 -0500 | [diff] [blame] | 330 | # Flag to apply erratum 1951500 workaround during reset. This erratum applies |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 331 | # 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] | 332 | # well but there is no workaround for that revision. |
| 333 | ERRATA_A78_1951500 ?=0 |
| 334 | |
johpow01 | b3e8294 | 2021-04-30 18:08:52 -0500 | [diff] [blame] | 335 | # Flag to apply erratum 1821534 workaround during reset. This erratum applies |
| 336 | # to revisions r0p0 and r1p0 of the A78 cpu. |
| 337 | ERRATA_A78_1821534 ?=0 |
| 338 | |
nayanpatel-arm | 80bf7a5 | 2021-08-11 13:33:00 -0700 | [diff] [blame] | 339 | # Flag to apply erratum 1952683 workaround during reset. This erratum applies |
| 340 | # 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] | 341 | ERRATA_A78_1952683 ?=0 |
nayanpatel-arm | 80bf7a5 | 2021-08-11 13:33:00 -0700 | [diff] [blame] | 342 | |
nayanpatel-arm | 39e0865 | 2021-09-28 17:31:50 -0700 | [diff] [blame] | 343 | # Flag to apply erratum 2132060 workaround during reset. This erratum applies |
| 344 | # 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] | 345 | ERRATA_A78_2132060 ?=0 |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 346 | |
| 347 | # Flag to apply erratum 2242635 workaround during reset. This erratum applies |
| 348 | # to revisions r1p0, r1p1, and r1p2 of the A78 cpu and is open. The issue is |
| 349 | # present in r0p0 as well but there is no workaround for that revision. |
| 350 | ERRATA_A78_2242635 ?=0 |
| 351 | |
John Powell | 12bc0de | 2022-05-03 15:22:57 -0500 | [diff] [blame] | 352 | # Flag to apply erratum 2376745 workaround during reset. This erratum applies |
| 353 | # to revisions r0p0, r1p0, r1p1, and r1p2 of the A78 cpu. It is still open. |
| 354 | ERRATA_A78_2376745 ?=0 |
| 355 | |
John Powell | a93b7e5 | 2022-05-03 15:52:11 -0500 | [diff] [blame] | 356 | # Flag to apply erratum 2395406 workaround during reset. This erratum applies |
| 357 | # to revisions r0p0, r1p0, r1p1, and r1p2 of the A78 cpu. It is still open. |
| 358 | ERRATA_A78_2395406 ?=0 |
| 359 | |
Bipin Ravi | 8f78e0d | 2022-12-15 14:48:21 -0600 | [diff] [blame] | 360 | # Flag to apply erratum 2772019 workaround during powerdown. This erratum |
| 361 | # applies to revisions r0p0, r1p0, r1p1 and r1p2 of the A78 cpu. It is still |
| 362 | # open. |
| 363 | ERRATA_A78_2772019 ?=0 |
| 364 | |
Sona Mathew | f13c1a9 | 2023-01-11 12:55:30 -0600 | [diff] [blame] | 365 | # Flag to apply erratum 2779479 workaround during reset. This erratum applies |
| 366 | # to revision r0p0, r1p0, r1p1 and r1p2 of the A78 cpu. It is still open. |
| 367 | ERRATA_A78_2779479 ?=0 |
| 368 | |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 369 | # Flag to apply erratum 1941500 workaround during reset. This erratum applies |
| 370 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
| 371 | ERRATA_A78_AE_1941500 ?=0 |
| 372 | |
| 373 | # Flag to apply erratum 1951502 workaround during reset. This erratum applies |
| 374 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
| 375 | ERRATA_A78_AE_1951502 ?=0 |
nayanpatel-arm | 39e0865 | 2021-09-28 17:31:50 -0700 | [diff] [blame] | 376 | |
Varun Wadekar | 9030a6c | 2022-03-09 22:04:00 +0000 | [diff] [blame] | 377 | # Flag to apply erratum 2376748 workaround during reset. This erratum applies |
| 378 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
| 379 | ERRATA_A78_AE_2376748 ?=0 |
| 380 | |
Varun Wadekar | ac6bf2e | 2022-03-09 22:20:32 +0000 | [diff] [blame] | 381 | # Flag to apply erratum 2395408 workaround during reset. This erratum applies |
| 382 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
| 383 | ERRATA_A78_AE_2395408 ?=0 |
| 384 | |
laurenw-arm | 4dc1887 | 2022-07-12 10:43:52 -0500 | [diff] [blame] | 385 | # Flag to apply erratum 2132064 workaround during reset. This erratum applies |
| 386 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
| 387 | ERRATA_A78C_2132064 ?=0 |
| 388 | |
Bipin Ravi | 9c36e12 | 2022-07-15 17:20:16 -0500 | [diff] [blame] | 389 | # Flag to apply erratum 2242638 workaround during reset. This erratum applies |
| 390 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
| 391 | ERRATA_A78C_2242638 ?=0 |
| 392 | |
Akram Ahmad | fbc1edb | 2022-09-06 11:23:25 +0100 | [diff] [blame] | 393 | # Flag to apply erratum 2376749 workaround during reset. This erratum applies |
| 394 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
| 395 | ERRATA_A78C_2376749 ?=0 |
| 396 | |
Akram Ahmad | dbff7cf | 2022-07-19 14:38:46 +0100 | [diff] [blame] | 397 | # Flag to apply erratum 2395411 workaround during reset. This erratum applies |
| 398 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
| 399 | ERRATA_A78C_2395411 ?=0 |
| 400 | |
Bipin Ravi | e0b52cc | 2023-01-18 11:03:21 -0600 | [diff] [blame] | 401 | # Flag to apply erratum 2772121 workaround during powerdown. This erratum |
| 402 | # applies to revisions r0p0, r0p1 and r0p2 of the A78C cpu. It is still open. |
| 403 | ERRATA_A78C_2772121 ?=0 |
| 404 | |
Okash Khawaja | baee390 | 2022-04-21 12:20:21 +0100 | [diff] [blame] | 405 | # Flag to apply erratum 1821534 workaround during reset. This erratum applies |
| 406 | # to revisions r0p0 - r1p0 of the X1 cpu and fixed in r1p1. |
| 407 | ERRATA_X1_1821534 ?=0 |
| 408 | |
| 409 | # Flag to apply erratum 1688305 workaround during reset. This erratum applies |
| 410 | # to revisions r0p0 - r1p0 of the X1 cpu and fixed in r1p1. |
| 411 | ERRATA_X1_1688305 ?=0 |
| 412 | |
| 413 | # Flag to apply erratum 1827429 workaround during reset. This erratum applies |
| 414 | # to revisions r0p0 - r1p0 of the X1 cpu and fixed in r1p1. |
| 415 | ERRATA_X1_1827429 ?=0 |
| 416 | |
Dimitris Papastamos | 7ca21db | 2018-03-26 16:46:01 +0100 | [diff] [blame] | 417 | # Flag to apply T32 CLREX workaround during reset. This erratum applies |
John Tsichritzis | 56369c1 | 2019-02-19 13:49:06 +0000 | [diff] [blame] | 418 | # only to r0p0 and r1p0 of the Neoverse N1 cpu. |
laurenw-arm | c0763b6 | 2020-01-22 13:30:39 -0600 | [diff] [blame] | 419 | ERRATA_N1_1043202 ?=0 |
Dimitris Papastamos | 7ca21db | 2018-03-26 16:46:01 +0100 | [diff] [blame] | 420 | |
lauwal01 | bd555f4 | 2019-06-24 11:23:50 -0500 | [diff] [blame] | 421 | # Flag to apply erratum 1073348 workaround during reset. This erratum applies |
| 422 | # only to revision r0p0 and r1p0 of the Neoverse N1 cpu. |
| 423 | ERRATA_N1_1073348 ?=0 |
| 424 | |
lauwal01 | 363ee3c | 2019-06-24 11:28:34 -0500 | [diff] [blame] | 425 | # Flag to apply erratum 1130799 workaround during reset. This erratum applies |
| 426 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
| 427 | ERRATA_N1_1130799 ?=0 |
| 428 | |
lauwal01 | f2adb13 | 2019-06-24 11:32:40 -0500 | [diff] [blame] | 429 | # Flag to apply erratum 1165347 workaround during reset. This erratum applies |
| 430 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
| 431 | ERRATA_N1_1165347 ?=0 |
| 432 | |
lauwal01 | e159044 | 2019-06-24 11:35:37 -0500 | [diff] [blame] | 433 | # Flag to apply erratum 1207823 workaround during reset. This erratum applies |
| 434 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
| 435 | ERRATA_N1_1207823 ?=0 |
| 436 | |
lauwal01 | 197f14c | 2019-06-24 11:38:53 -0500 | [diff] [blame] | 437 | # Flag to apply erratum 1220197 workaround during reset. This erratum applies |
| 438 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
| 439 | ERRATA_N1_1220197 ?=0 |
| 440 | |
lauwal01 | 07c2a23 | 2019-06-24 11:42:02 -0500 | [diff] [blame] | 441 | # Flag to apply erratum 1257314 workaround during reset. This erratum applies |
| 442 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
| 443 | ERRATA_N1_1257314 ?=0 |
| 444 | |
lauwal01 | 42771af | 2019-06-24 11:44:58 -0500 | [diff] [blame] | 445 | # Flag to apply erratum 1262606 workaround during reset. This erratum applies |
| 446 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
| 447 | ERRATA_N1_1262606 ?=0 |
| 448 | |
lauwal01 | 00396bf | 2019-06-24 11:47:30 -0500 | [diff] [blame] | 449 | # Flag to apply erratum 1262888 workaround during reset. This erratum applies |
| 450 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
| 451 | ERRATA_N1_1262888 ?=0 |
| 452 | |
lauwal01 | 644b6ed | 2019-06-24 11:49:01 -0500 | [diff] [blame] | 453 | # Flag to apply erratum 1275112 workaround during reset. This erratum applies |
| 454 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
| 455 | ERRATA_N1_1275112 ?=0 |
| 456 | |
Andre Przywara | b934740 | 2019-05-20 14:57:06 +0100 | [diff] [blame] | 457 | # Flag to apply erratum 1315703 workaround during reset. This erratum applies |
| 458 | # to revisions before r3p1 of the Neoverse N1 cpu. |
laurenw-arm | c0763b6 | 2020-01-22 13:30:39 -0600 | [diff] [blame] | 459 | ERRATA_N1_1315703 ?=0 |
Andre Przywara | b934740 | 2019-05-20 14:57:06 +0100 | [diff] [blame] | 460 | |
laurenw-arm | 94accd3 | 2019-08-20 15:51:24 -0500 | [diff] [blame] | 461 | # Flag to apply erratum 1542419 workaround during reset. This erratum applies |
| 462 | # to revisions r3p0 - r4p0 of the Neoverse N1 cpu. |
| 463 | ERRATA_N1_1542419 ?=0 |
| 464 | |
johpow01 | e2428fd | 2020-08-05 12:27:12 -0500 | [diff] [blame] | 465 | # Flag to apply erratum 1868343 workaround during reset. This erratum applies |
| 466 | # to revision <= r4p0 of the Neoverse N1 cpu. |
| 467 | ERRATA_N1_1868343 ?=0 |
| 468 | |
johpow01 | f1a84f5 | 2020-10-07 14:33:15 -0500 | [diff] [blame] | 469 | # Flag to apply erratum 1946160 workaround during reset. This erratum applies |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 470 | # 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] | 471 | # exists in revisions r0p0, r1p0, and r2p0 as well but there is no workaround. |
| 472 | ERRATA_N1_1946160 ?=0 |
| 473 | |
Bipin Ravi | 9edf249 | 2022-11-02 16:12:01 -0500 | [diff] [blame] | 474 | # Flag to apply erratum 2743102 workaround during powerdown. This erratum |
| 475 | # applies to all revisions <= r4p1 of the Neoverse N1 cpu and is still open. |
| 476 | ERRATA_N1_2743102 ?=0 |
| 477 | |
Juan Pablo Conde | 31c9337 | 2022-02-28 14:14:44 -0500 | [diff] [blame] | 478 | # Flag to apply erratum 1618635 workaround during reset. This erratum applies |
| 479 | # to revision r0p0 of the Neoverse V1 cpu and was fixed in the revision r1p0. |
| 480 | ERRATA_V1_1618635 ?=0 |
| 481 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 482 | # Flag to apply erratum 1774420 workaround during reset. This erratum applies |
laurenw-arm | 3c86d83 | 2021-08-02 13:22:32 -0500 | [diff] [blame] | 483 | # to revisions r0p0 and r1p0 of the Neoverse V1 core, and was fixed in r1p1. |
| 484 | ERRATA_V1_1774420 ?=0 |
| 485 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 486 | # Flag to apply erratum 1791573 workaround during reset. This erratum applies |
johpow01 | c73b03c | 2021-05-03 15:33:39 -0500 | [diff] [blame] | 487 | # to revisions r0p0 and r1p0 of the Neoverse V1 core, and was fixed in r1p1. |
| 488 | ERRATA_V1_1791573 ?=0 |
| 489 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 490 | # Flag to apply erratum 1852267 workaround during reset. This erratum applies |
laurenw-arm | b1923e9 | 2021-08-02 14:40:08 -0500 | [diff] [blame] | 491 | # to revisions r0p0 and r1p0 of the Neoverse V1 core, and was fixed in r1p1. |
| 492 | ERRATA_V1_1852267 ?=0 |
| 493 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 494 | # Flag to apply erratum 1925756 workaround during reset. This needs to be |
laurenw-arm | 6b56f96 | 2021-08-02 15:00:15 -0500 | [diff] [blame] | 495 | # enabled for r0p0, r1p0, and r1p1 of the Neoverse V1 core, it is still open. |
| 496 | ERRATA_V1_1925756 ?=0 |
| 497 | |
johpow01 | 07acb4f | 2020-10-07 16:38:37 -0500 | [diff] [blame] | 498 | # Flag to apply erratum 1940577 workaround during reset. This erratum applies |
| 499 | # to revisions r1p0 and r1p1 of the Neoverse V1 cpu. |
| 500 | ERRATA_V1_1940577 ?=0 |
| 501 | |
johpow01 | 97db675 | 2021-08-02 18:59:08 -0500 | [diff] [blame] | 502 | # Flag to apply erratum 1966096 workaround during reset. This erratum applies |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 503 | # 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] | 504 | # 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] | 505 | ERRATA_V1_1966096 ?=0 |
johpow01 | 97db675 | 2021-08-02 18:59:08 -0500 | [diff] [blame] | 506 | |
johpow01 | ad1ca34 | 2021-08-03 14:35:20 -0500 | [diff] [blame] | 507 | # Flag to apply erratum 2139242 workaround during reset. This erratum applies |
| 508 | # 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] | 509 | ERRATA_V1_2139242 ?=0 |
| 510 | |
| 511 | # Flag to apply erratum 2108267 workaround during reset. This erratum applies |
| 512 | # to revisions r0p0, r1p0, and r1p1 of the Neoverse V1 cpu and is still open. |
| 513 | ERRATA_V1_2108267 ?=0 |
johpow01 | ad1ca34 | 2021-08-03 14:35:20 -0500 | [diff] [blame] | 514 | |
johpow01 | 4de29cb | 2021-09-02 18:29:17 -0500 | [diff] [blame] | 515 | # Flag to apply erratum 2216392 workaround during reset. This erratum applies |
| 516 | # to revisions r1p0 and r1p1 of the Neoverse V1 cpu and is still open. This |
| 517 | # issue exists in r0p0 as well but there is no workaround for that revision. |
| 518 | ERRATA_V1_2216392 ?=0 |
| 519 | |
Bipin Ravi | 971938f | 2022-06-08 16:28:46 -0500 | [diff] [blame] | 520 | # Flag to apply erratum 2294912 workaround during reset. This erratum applies |
| 521 | # to revisions r0p0, r1p0, and r1p1 of the Neoverse V1 cpu and is still open. |
| 522 | ERRATA_V1_2294912 ?=0 |
| 523 | |
Bipin Ravi | b4cb31f | 2022-06-14 17:09:23 -0500 | [diff] [blame] | 524 | # Flag to apply erratum 2372203 workaround during reset. This erratum applies |
| 525 | # to revisions r0p0, r1p0 and r1p1 of the Neoverse V1 cpu and is still open. |
| 526 | ERRATA_V1_2372203 ?=0 |
| 527 | |
Bipin Ravi | fe4b0c4 | 2022-12-15 11:57:53 -0600 | [diff] [blame] | 528 | # Flag to apply erratum 2743093 workaround during powerdown. This erratum |
| 529 | # applies to revisions r0p0, r1p0, r1p1 and r1p2 of the Neoverse V1 cpu and is |
| 530 | # still open. |
| 531 | ERRATA_V1_2743093 ?=0 |
| 532 | |
Sona Mathew | fe405d0 | 2023-01-11 17:04:24 -0600 | [diff] [blame] | 533 | # Flag to apply erratum 2779461 workaround during powerdown. This erratum |
| 534 | # applies to revisions r0p0, r1p0, r1p1 and r1p2 of the Neoverse V1 cpu and is |
| 535 | # still open. |
| 536 | ERRATA_V1_2779461 ?=0 |
| 537 | |
nayanpatel-arm | e55d325 | 2021-08-06 16:39:48 -0700 | [diff] [blame] | 538 | # Flag to apply erratum 1987031 workaround during reset. This erratum applies |
| 539 | # to revisions r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
| 540 | ERRATA_A710_1987031 ?=0 |
| 541 | |
nayanpatel-arm | 7597d08 | 2021-08-25 17:35:15 -0700 | [diff] [blame] | 542 | # Flag to apply erratum 2081180 workaround during reset. This erratum applies |
| 543 | # to revisions r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
| 544 | ERRATA_A710_2081180 ?=0 |
| 545 | |
nayanpatel-arm | 0b338b4 | 2021-09-16 15:27:53 -0700 | [diff] [blame] | 546 | # Flag to apply erratum 2083908 workaround during reset. This erratum applies |
| 547 | # to revision r2p0 of the Cortex-A710 cpu and is still open. |
| 548 | ERRATA_A710_2083908 ?=0 |
| 549 | |
nayanpatel-arm | f2dce0e | 2021-09-22 12:35:03 -0700 | [diff] [blame] | 550 | # Flag to apply erratum 2058056 workaround during reset. This erratum applies |
| 551 | # to revisions r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
| 552 | ERRATA_A710_2058056 ?=0 |
| 553 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 554 | # Flag to apply erratum 2055002 workaround during reset. This erratum applies |
| 555 | # to revision r1p0, r2p0 of the Cortex-A710 cpu and is still open. |
| 556 | ERRATA_A710_2055002 ?=0 |
| 557 | |
| 558 | # Flag to apply erratum 2017096 workaround during reset. This erratum applies |
| 559 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
| 560 | ERRATA_A710_2017096 ?=0 |
| 561 | |
| 562 | # Flag to apply erratum 2267065 workaround during reset. This erratum applies |
| 563 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 564 | ERRATA_A710_2267065 ?=0 |
| 565 | |
| 566 | # Flag to apply erratum 2136059 workaround during reset. This erratum applies |
| 567 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 568 | ERRATA_A710_2136059 ?=0 |
| 569 | |
Akram Ahmad | 1714c1d | 2022-07-21 15:25:08 +0100 | [diff] [blame] | 570 | # Flag to apply erratum 2147715 workaround during reset. This erratum applies |
| 571 | # to revision r2p0 of the Cortex-A710 CPU and is fixed in revision r2p1. |
| 572 | ERRATA_A710_2147715 ?=0 |
| 573 | |
Jayanth Dodderi Chidanand | de4f589 | 2022-09-01 22:09:54 +0100 | [diff] [blame] | 574 | # Flag to apply erratum 2216384 workaround during reset. This erratum applies |
| 575 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 576 | ERRATA_A710_2216384 ?=0 |
| 577 | |
johpow01 | 7249fd0 | 2022-02-28 18:34:04 -0600 | [diff] [blame] | 578 | # Flag to apply erratum 2282622 workaround during reset. This erratum applies |
Bipin Ravi | 380c198 | 2022-12-22 13:31:46 -0600 | [diff] [blame] | 579 | # to revision r0p0, r1p0, r2p0 and r2p1 of the Cortex-A710 cpu and is still |
| 580 | # open. |
johpow01 | 7249fd0 | 2022-02-28 18:34:04 -0600 | [diff] [blame] | 581 | ERRATA_A710_2282622 ?=0 |
| 582 | |
Boyan Karatotev | f8de535 | 2022-10-03 14:21:28 +0100 | [diff] [blame] | 583 | # Flag to apply erratum 2291219 workaround during reset. This erratum applies |
| 584 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 585 | ERRATA_A710_2291219 ?=0 |
| 586 | |
johpow01 | 7d52a8f | 2022-03-09 16:23:04 -0600 | [diff] [blame] | 587 | # Flag to apply erratum 2008768 workaround during reset. This erratum applies |
| 588 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 589 | ERRATA_A710_2008768 ?=0 |
| 590 | |
Bipin Ravi | 77eab29 | 2022-07-12 15:53:21 -0500 | [diff] [blame] | 591 | # Flag to apply erratum 2371105 workaround during reset. This erratum applies |
| 592 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
| 593 | ERRATA_A710_2371105 ?=0 |
| 594 | |
Bipin Ravi | ef9a155 | 2022-12-07 13:32:35 -0600 | [diff] [blame] | 595 | # Flag to apply erratum 2768515 workaround during power down. This erratum |
| 596 | # applies to revision r0p0, r1p0, r2p0 and r2p1 of the Cortex-A710 cpu and is |
| 597 | # still open. |
| 598 | ERRATA_A710_2768515 ?=0 |
| 599 | |
Bipin Ravi | cc744bf | 2022-12-07 17:01:26 -0600 | [diff] [blame] | 600 | # Flag to apply erratum 2002655 workaround during reset. This erratum applies |
| 601 | # to revisions r0p0 of the Neoverse-N2 cpu, it is still open. |
| 602 | ERRATA_N2_2002655 ?=0 |
| 603 | |
Bipin Ravi | eb35e85 | 2021-03-30 16:08:32 -0500 | [diff] [blame] | 604 | # Flag to apply erratum 2067956 workaround during reset. This erratum applies |
| 605 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 606 | ERRATA_N2_2067956 ?=0 |
| 607 | |
Bipin Ravi | 7f56547 | 2021-03-31 10:10:27 -0500 | [diff] [blame] | 608 | # Flag to apply erratum 2025414 workaround during reset. This erratum applies |
| 609 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 610 | ERRATA_N2_2025414 ?=0 |
| 611 | |
Bipin Ravi | 7e03069 | 2021-08-30 13:02:51 -0500 | [diff] [blame] | 612 | # Flag to apply erratum 2189731 workaround during reset. This erratum applies |
| 613 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 614 | ERRATA_N2_2189731 ?=0 |
| 615 | |
Bipin Ravi | 0ba631c | 2021-09-01 01:36:43 -0500 | [diff] [blame] | 616 | # Flag to apply erratum 2138956 workaround during reset. This erratum applies |
| 617 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 618 | ERRATA_N2_2138956 ?=0 |
| 619 | |
nayanpatel-arm | d4c5f9c | 2021-09-28 09:46:45 -0700 | [diff] [blame] | 620 | # Flag to apply erratum 2138953 workaround during reset. This erratum applies |
| 621 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 622 | ERRATA_N2_2138953 ?=0 |
| 623 | |
nayanpatel-arm | 2f15399 | 2021-10-06 15:31:24 -0700 | [diff] [blame] | 624 | # Flag to apply erratum 2242415 workaround during reset. This erratum applies |
| 625 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 626 | ERRATA_N2_2242415 ?=0 |
| 627 | |
nayanpatel-arm | 8e1aa01 | 2021-10-20 18:28:58 -0700 | [diff] [blame] | 628 | # Flag to apply erratum 2138958 workaround during reset. This erratum applies |
| 629 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 630 | ERRATA_N2_2138958 ?=0 |
| 631 | |
nayanpatel-arm | fed9813 | 2021-10-07 17:59:33 -0700 | [diff] [blame] | 632 | # Flag to apply erratum 2242400 workaround during reset. This erratum applies |
| 633 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 634 | ERRATA_N2_2242400 ?=0 |
| 635 | |
nayanpatel-arm | 45b9f6f | 2021-10-20 17:30:46 -0700 | [diff] [blame] | 636 | # Flag to apply erratum 2280757 workaround during reset. This erratum applies |
| 637 | # to revision r0p0 of the Neoverse N2 cpu and is still open. |
| 638 | ERRATA_N2_2280757 ?=0 |
| 639 | |
Boyan Karatotev | d3f8b4d | 2022-10-03 14:07:08 +0100 | [diff] [blame] | 640 | # Flag to apply erraturm 2326639 workaroud during powerdown. This erratum |
| 641 | # applies to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
| 642 | ERRATA_N2_2326639 ?=0 |
| 643 | |
Akram Ahmad | b621bda | 2022-07-18 12:27:29 +0100 | [diff] [blame] | 644 | # Flag to apply erratum 2376738 workaround during reset. This erratum applies |
| 645 | # to revision r0p0 of the Neoverse N2 cpu, it is fixed in r0p1. |
| 646 | ERRATA_N2_2376738 ?=0 |
| 647 | |
Daniel Boulby | 1af2b11 | 2022-07-06 14:33:13 +0100 | [diff] [blame] | 648 | # Flag to apply erratum 2388450 workaround during reset. This erratum applies |
| 649 | # to revision r0p0 of the Neoverse N2 cpu, it is fixed in r0p1. |
| 650 | ERRATA_N2_2388450 ?=0 |
| 651 | |
Bipin Ravi | cc744bf | 2022-12-07 17:01:26 -0600 | [diff] [blame] | 652 | # Flag to apply erratum 2743089 workaround during during powerdown. This erratum |
| 653 | # applies to all revisions <= r0p2 of the Neoverse N2 cpu, it is fixed in r0p3. |
| 654 | ERRATA_N2_2743089 ?=0 |
| 655 | |
johpow01 | 0afef36 | 2021-12-02 13:25:50 -0600 | [diff] [blame] | 656 | # Flag to apply erratum 2002765 workaround during reset. This erratum applies |
| 657 | # 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] | 658 | ERRATA_X2_2002765 ?=0 |
johpow01 | 0afef36 | 2021-12-02 13:25:50 -0600 | [diff] [blame] | 659 | |
johpow01 | f6c37de | 2021-12-03 11:27:33 -0600 | [diff] [blame] | 660 | # Flag to apply erratum 2058056 workaround during reset. This erratum applies |
| 661 | # 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] | 662 | ERRATA_X2_2058056 ?=0 |
johpow01 | f6c37de | 2021-12-03 11:27:33 -0600 | [diff] [blame] | 663 | |
johpow01 | 15f10bd | 2021-12-01 17:40:39 -0600 | [diff] [blame] | 664 | # Flag to apply erratum 2083908 workaround during reset. This erratum applies |
| 665 | # to revision r2p0 of the Cortex-X2 cpu and is still open. |
Bipin Ravi | 2f73d97 | 2022-01-20 00:01:04 -0600 | [diff] [blame] | 666 | ERRATA_X2_2083908 ?=0 |
| 667 | |
| 668 | # Flag to apply erratum 2017096 workaround during reset. This erratum applies |
| 669 | # only to revisions r0p0, r1p0 and r2p0 of the Cortex-X2 cpu, it is fixed in |
| 670 | # r2p1. |
| 671 | ERRATA_X2_2017096 ?=0 |
johpow01 | 15f10bd | 2021-12-01 17:40:39 -0600 | [diff] [blame] | 672 | |
Bipin Ravi | 9ad5478 | 2022-01-20 00:42:05 -0600 | [diff] [blame] | 673 | # Flag to apply erratum 2081180 workaround during reset. This erratum applies |
| 674 | # only to revisions r0p0, r1p0 and r2p0 of the Cortex-X2 cpu, it is fixed in |
| 675 | # r2p1. |
| 676 | ERRATA_X2_2081180 ?=0 |
| 677 | |
Bipin Ravi | 78b7208 | 2022-02-06 01:29:31 -0600 | [diff] [blame] | 678 | # Flag to apply erratum 2216384 workaround during reset. This erratum applies |
| 679 | # only to revisions r0p0, r1p0 and r2p0 of the Cortex-X2 cpu, it is fixed in |
| 680 | # r2p1. |
| 681 | ERRATA_X2_2216384 ?=0 |
| 682 | |
Bipin Ravi | c6b6521 | 2022-03-08 10:37:43 -0600 | [diff] [blame] | 683 | # Flag to apply erratum 2147715 workaround during reset. This erratum applies |
| 684 | # only to revision r2p0 of the Cortex-X2 cpu, it is fixed in r2p1. |
| 685 | ERRATA_X2_2147715 ?=0 |
| 686 | |
Bipin Ravi | 7dccf8f | 2022-12-22 14:19:59 -0600 | [diff] [blame] | 687 | # Flag to apply erratum 2282622 workaround during reset. This erratum applies |
| 688 | # to revision r0p0, r1p0, r2p0 and r2p1 of the Cortex-X2 cpu and is still |
| 689 | # open. |
| 690 | ERRATA_X2_2282622 ?=0 |
| 691 | |
Bipin Ravi | 4e315c3 | 2022-07-12 17:13:01 -0500 | [diff] [blame] | 692 | # Flag to apply erratum 2371105 workaround during reset. This erratum applies |
| 693 | # to revision r0p0, r1p0 and r2p0 of the Cortex-X2 cpu and is fixed in r2p1. |
| 694 | ERRATA_X2_2371105 ?=0 |
| 695 | |
Bipin Ravi | 86839eb | 2022-12-07 13:54:02 -0600 | [diff] [blame] | 696 | # Flag to apply erratum 2768515 workaround during power down. This erratum |
| 697 | # applies to revision r0p0, r1p0, r2p0 and r2p1 of the Cortex-X2 cpu and is |
| 698 | # still open. |
| 699 | ERRATA_X2_2768515 ?=0 |
| 700 | |
Boyan Karatotev | 6559dbd | 2022-10-03 14:18:28 +0100 | [diff] [blame] | 701 | # Flag to apply erratum 2313909 workaround on powerdown. This erratum applies |
| 702 | # to revisions r0p0 and r1p0 of the Cortex-X3 cpu, it is fixed in r1p1. |
| 703 | ERRATA_X3_2313909 ?=0 |
| 704 | |
Harrison Mutai | 82dd5ac | 2022-11-11 14:09:55 +0000 | [diff] [blame] | 705 | # Flag to apply erratum 2615812 workaround on powerdown. This erratum applies |
| 706 | # to revisions r0p0, r1p0, r1p1 of the Cortex-X3 cpu, it is still open. |
| 707 | ERRATA_X3_2615812 ?=0 |
| 708 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 709 | # Flag to apply erratum 1922240 workaround during reset. This erratum applies |
| 710 | # to revision r0p0 of the Cortex-A510 cpu and is fixed in r0p1. |
| 711 | ERRATA_A510_1922240 ?=0 |
| 712 | |
johpow01 | 49f60dd | 2022-01-06 14:54:49 -0600 | [diff] [blame] | 713 | # Flag to apply erratum 2288014 workaround during reset. This erratum applies |
| 714 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0 of the Cortex-A510 cpu and is |
| 715 | # fixed in r1p1. |
| 716 | ERRATA_A510_2288014 ?=0 |
| 717 | |
johpow01 | 8276f25 | 2022-01-07 17:12:31 -0600 | [diff] [blame] | 718 | # Flag to apply erratum 2042739 workaround during reset. This erratum applies |
| 719 | # to revisions r0p0, r0p1 and r0p2 of the Cortex-A510 cpu and is fixed in r0p3. |
| 720 | ERRATA_A510_2042739 ?=0 |
| 721 | |
johpow01 | 5a99300 | 2022-01-11 17:54:41 -0600 | [diff] [blame] | 722 | # Flag to apply erratum 2041909 workaround during reset. This erratum applies |
| 723 | # to revision r0p2 of the Cortex-A510 cpu and is fixed in r0p3. The issue is |
| 724 | # present in r0p0 and r0p1 but there is no workaround for those revisions. |
| 725 | ERRATA_A510_2041909 ?=0 |
| 726 | |
johpow01 | 3ba9cb2 | 2022-02-13 21:00:10 -0600 | [diff] [blame] | 727 | # Flag to apply erratum 2250311 workaround during reset. This erratum applies |
| 728 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0, and is fixed in r1p1. |
| 729 | ERRATA_A510_2250311 ?=0 |
| 730 | |
johpow01 | 3ead295 | 2022-02-14 20:19:08 -0600 | [diff] [blame] | 731 | # Flag to apply erratum 2218950 workaround during reset. This erratum applies |
| 732 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0, and is fixed in r1p1. |
| 733 | ERRATA_A510_2218950 ?=0 |
| 734 | |
johpow01 | ac55c01 | 2022-02-15 22:55:22 -0600 | [diff] [blame] | 735 | # Flag to apply erratum 2172148 workaround during reset. This erratum applies |
| 736 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0, and is fixed in r1p1. |
| 737 | ERRATA_A510_2172148 ?=0 |
| 738 | |
Akram Ahmad | a85254e | 2022-07-21 14:01:33 +0100 | [diff] [blame] | 739 | # Flag to apply erratum 2347730 workaround during reset. This erratum applies |
| 740 | # to revisions r0p0, r0p1, r0p2, r0p3, r1p0 and r1p1 of the Cortex-A510 CPU, |
| 741 | # and is fixed in r1p2. |
| 742 | ERRATA_A510_2347730 ?=0 |
| 743 | |
Akram Ahmad | 60accba | 2022-07-22 16:20:44 +0100 | [diff] [blame] | 744 | # Flag to apply erratum 2371937 workaround during reset. This erratum applies |
| 745 | # to revisions r0p0, r0p1, r0p2, r0p3, r1p0, and r1p1. It is fixed in r1p2. |
| 746 | ERRATA_A510_2371937 ?=0 |
| 747 | |
Akram Ahmad | 89034d6 | 2022-09-21 13:59:56 +0100 | [diff] [blame] | 748 | # Flag to apply erratum 2666669 workaround during reset. This erratum applies |
| 749 | # to revisions r0p0, r0p1, r0p2, r0p3, r1p0, and r1p1. It is fixed in r1p2. |
| 750 | ERRATA_A510_2666669 ?=0 |
| 751 | |
Harrison Mutai | e5249fe | 2022-12-09 12:14:25 +0000 | [diff] [blame] | 752 | # Flag to apply erratum 2684597 workaround during powerdown. This erratum |
| 753 | # applies to revision r0p0, r0p1, r0p2, r0p3, r1p0, r1p1 and r1p2 of the |
| 754 | # Cortex-A510 cpu and is fixed in r1p3. |
| 755 | ERRATA_A510_2684597 ?=0 |
| 756 | |
Louis Mayencourt | 4498b15 | 2019-04-09 16:29:01 +0100 | [diff] [blame] | 757 | # Flag to apply DSU erratum 798953. This erratum applies to DSUs revision r0p0. |
| 758 | # Applying the workaround results in higher DSU power consumption on idle. |
| 759 | ERRATA_DSU_798953 ?=0 |
| 760 | |
John Tsichritzis | 4daa1de | 2018-07-23 09:11:59 +0100 | [diff] [blame] | 761 | # Flag to apply DSU erratum 936184. This erratum applies to DSUs containing |
| 762 | # the ACP interface and revision < r2p0. Applying the workaround results in |
| 763 | # higher DSU power consumption on idle. |
| 764 | ERRATA_DSU_936184 ?=0 |
| 765 | |
Bipin Ravi | af40d69 | 2021-12-22 14:35:21 -0600 | [diff] [blame] | 766 | # Flag to apply DSU erratum 2313941. This erratum applies to DSUs revisions |
| 767 | # r0p0, r1p0, r2p0, r2p1, r3p0, r3p1 and is still open. Applying the workaround |
| 768 | # results in higher DSU power consumption on idle. |
| 769 | ERRATA_DSU_2313941 ?=0 |
| 770 | |
Joel Hutton | 26d1676 | 2019-04-10 12:52:52 +0100 | [diff] [blame] | 771 | # Process ERRATA_A9_794073 flag |
| 772 | $(eval $(call assert_boolean,ERRATA_A9_794073)) |
| 773 | $(eval $(call add_define,ERRATA_A9_794073)) |
| 774 | |
Ambroise Vincent | d4a51eb | 2019-03-04 16:56:26 +0000 | [diff] [blame] | 775 | # Process ERRATA_A15_816470 flag |
| 776 | $(eval $(call assert_boolean,ERRATA_A15_816470)) |
| 777 | $(eval $(call add_define,ERRATA_A15_816470)) |
| 778 | |
Ambroise Vincent | 68b3812 | 2019-03-05 09:54:21 +0000 | [diff] [blame] | 779 | # Process ERRATA_A15_827671 flag |
| 780 | $(eval $(call assert_boolean,ERRATA_A15_827671)) |
| 781 | $(eval $(call add_define,ERRATA_A15_827671)) |
| 782 | |
Ambroise Vincent | 8cf9eef | 2019-02-28 16:23:53 +0000 | [diff] [blame] | 783 | # Process ERRATA_A17_852421 flag |
| 784 | $(eval $(call assert_boolean,ERRATA_A17_852421)) |
| 785 | $(eval $(call add_define,ERRATA_A17_852421)) |
| 786 | |
Ambroise Vincent | fa5c951 | 2019-03-04 13:20:56 +0000 | [diff] [blame] | 787 | # Process ERRATA_A17_852423 flag |
| 788 | $(eval $(call assert_boolean,ERRATA_A17_852423)) |
| 789 | $(eval $(call add_define,ERRATA_A17_852423)) |
| 790 | |
Louis Mayencourt | 8a06127 | 2019-04-05 16:25:25 +0100 | [diff] [blame] | 791 | # Process ERRATA_A35_855472 flag |
| 792 | $(eval $(call assert_boolean,ERRATA_A35_855472)) |
| 793 | $(eval $(call add_define,ERRATA_A35_855472)) |
| 794 | |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 795 | # Process ERRATA_A53_819472 flag |
| 796 | $(eval $(call assert_boolean,ERRATA_A53_819472)) |
| 797 | $(eval $(call add_define,ERRATA_A53_819472)) |
| 798 | |
| 799 | # Process ERRATA_A53_824069 flag |
| 800 | $(eval $(call assert_boolean,ERRATA_A53_824069)) |
| 801 | $(eval $(call add_define,ERRATA_A53_824069)) |
| 802 | |
developer | 4fceaca | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 803 | # Process ERRATA_A53_826319 flag |
| 804 | $(eval $(call assert_boolean,ERRATA_A53_826319)) |
| 805 | $(eval $(call add_define,ERRATA_A53_826319)) |
| 806 | |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 807 | # Process ERRATA_A53_827319 flag |
| 808 | $(eval $(call assert_boolean,ERRATA_A53_827319)) |
| 809 | $(eval $(call add_define,ERRATA_A53_827319)) |
| 810 | |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 811 | # Process ERRATA_A53_835769 flag |
| 812 | $(eval $(call assert_boolean,ERRATA_A53_835769)) |
| 813 | $(eval $(call add_define,ERRATA_A53_835769)) |
| 814 | |
developer | 4fceaca | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 815 | # Process ERRATA_A53_836870 flag |
| 816 | $(eval $(call assert_boolean,ERRATA_A53_836870)) |
| 817 | $(eval $(call add_define,ERRATA_A53_836870)) |
| 818 | |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 819 | # Process ERRATA_A53_843419 flag |
| 820 | $(eval $(call assert_boolean,ERRATA_A53_843419)) |
| 821 | $(eval $(call add_define,ERRATA_A53_843419)) |
| 822 | |
Andre Przywara | 00eefd9 | 2016-10-06 16:54:53 +0100 | [diff] [blame] | 823 | # Process ERRATA_A53_855873 flag |
| 824 | $(eval $(call assert_boolean,ERRATA_A53_855873)) |
| 825 | $(eval $(call add_define,ERRATA_A53_855873)) |
| 826 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 827 | # Process ERRATA_A53_1530924 flag |
| 828 | $(eval $(call assert_boolean,ERRATA_A53_1530924)) |
| 829 | $(eval $(call add_define,ERRATA_A53_1530924)) |
| 830 | |
Ambroise Vincent | 7927fa0 | 2019-02-21 16:20:43 +0000 | [diff] [blame] | 831 | # Process ERRATA_A55_768277 flag |
| 832 | $(eval $(call assert_boolean,ERRATA_A55_768277)) |
| 833 | $(eval $(call add_define,ERRATA_A55_768277)) |
| 834 | |
Ambroise Vincent | 6f31960 | 2019-02-21 16:25:37 +0000 | [diff] [blame] | 835 | # Process ERRATA_A55_778703 flag |
| 836 | $(eval $(call assert_boolean,ERRATA_A55_778703)) |
| 837 | $(eval $(call add_define,ERRATA_A55_778703)) |
| 838 | |
Ambroise Vincent | 6a77f05 | 2019-02-21 16:27:34 +0000 | [diff] [blame] | 839 | # Process ERRATA_A55_798797 flag |
| 840 | $(eval $(call assert_boolean,ERRATA_A55_798797)) |
| 841 | $(eval $(call add_define,ERRATA_A55_798797)) |
| 842 | |
Ambroise Vincent | dd961f7 | 2019-02-21 16:29:16 +0000 | [diff] [blame] | 843 | # Process ERRATA_A55_846532 flag |
| 844 | $(eval $(call assert_boolean,ERRATA_A55_846532)) |
| 845 | $(eval $(call add_define,ERRATA_A55_846532)) |
| 846 | |
Ambroise Vincent | a1d6446 | 2019-02-21 16:29:50 +0000 | [diff] [blame] | 847 | # Process ERRATA_A55_903758 flag |
| 848 | $(eval $(call assert_boolean,ERRATA_A55_903758)) |
| 849 | $(eval $(call add_define,ERRATA_A55_903758)) |
| 850 | |
Ambroise Vincent | b72fe7a | 2019-05-28 09:52:48 +0100 | [diff] [blame] | 851 | # Process ERRATA_A55_1221012 flag |
| 852 | $(eval $(call assert_boolean,ERRATA_A55_1221012)) |
| 853 | $(eval $(call add_define,ERRATA_A55_1221012)) |
| 854 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 855 | # Process ERRATA_A55_1530923 flag |
| 856 | $(eval $(call assert_boolean,ERRATA_A55_1530923)) |
| 857 | $(eval $(call add_define,ERRATA_A55_1530923)) |
| 858 | |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 859 | # Process ERRATA_A57_806969 flag |
| 860 | $(eval $(call assert_boolean,ERRATA_A57_806969)) |
| 861 | $(eval $(call add_define,ERRATA_A57_806969)) |
| 862 | |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 863 | # Process ERRATA_A57_813419 flag |
| 864 | $(eval $(call assert_boolean,ERRATA_A57_813419)) |
| 865 | $(eval $(call add_define,ERRATA_A57_813419)) |
| 866 | |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 867 | # Process ERRATA_A57_813420 flag |
| 868 | $(eval $(call assert_boolean,ERRATA_A57_813420)) |
| 869 | $(eval $(call add_define,ERRATA_A57_813420)) |
Sandrine Bailleux | a7e0c53 | 2016-04-14 13:32:31 +0100 | [diff] [blame] | 870 | |
Ambroise Vincent | 1b0db76 | 2019-02-21 16:35:07 +0000 | [diff] [blame] | 871 | # Process ERRATA_A57_814670 flag |
| 872 | $(eval $(call assert_boolean,ERRATA_A57_814670)) |
| 873 | $(eval $(call add_define,ERRATA_A57_814670)) |
| 874 | |
Ambroise Vincent | aa2c029 | 2019-02-21 16:35:49 +0000 | [diff] [blame] | 875 | # Process ERRATA_A57_817169 flag |
| 876 | $(eval $(call assert_boolean,ERRATA_A57_817169)) |
| 877 | $(eval $(call add_define,ERRATA_A57_817169)) |
| 878 | |
Sandrine Bailleux | a7e0c53 | 2016-04-14 13:32:31 +0100 | [diff] [blame] | 879 | # Process ERRATA_A57_826974 flag |
| 880 | $(eval $(call assert_boolean,ERRATA_A57_826974)) |
| 881 | $(eval $(call add_define,ERRATA_A57_826974)) |
Sandrine Bailleux | c11116f | 2016-04-14 14:04:48 +0100 | [diff] [blame] | 882 | |
Sandrine Bailleux | adcbd55 | 2016-04-14 14:24:13 +0100 | [diff] [blame] | 883 | # Process ERRATA_A57_826977 flag |
| 884 | $(eval $(call assert_boolean,ERRATA_A57_826977)) |
| 885 | $(eval $(call add_define,ERRATA_A57_826977)) |
| 886 | |
Sandrine Bailleux | c11116f | 2016-04-14 14:04:48 +0100 | [diff] [blame] | 887 | # Process ERRATA_A57_828024 flag |
| 888 | $(eval $(call assert_boolean,ERRATA_A57_828024)) |
| 889 | $(eval $(call add_define,ERRATA_A57_828024)) |
Sandrine Bailleux | 48cbe85 | 2016-04-14 14:18:07 +0100 | [diff] [blame] | 890 | |
| 891 | # Process ERRATA_A57_829520 flag |
| 892 | $(eval $(call assert_boolean,ERRATA_A57_829520)) |
| 893 | $(eval $(call add_define,ERRATA_A57_829520)) |
Sandrine Bailleux | 143ef1a | 2016-04-21 11:10:52 +0100 | [diff] [blame] | 894 | |
| 895 | # Process ERRATA_A57_833471 flag |
| 896 | $(eval $(call assert_boolean,ERRATA_A57_833471)) |
| 897 | $(eval $(call add_define,ERRATA_A57_833471)) |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 898 | |
Eleanor Bonnici | 0c9bd27 | 2017-08-02 16:35:04 +0100 | [diff] [blame] | 899 | # Process ERRATA_A57_859972 flag |
| 900 | $(eval $(call assert_boolean,ERRATA_A57_859972)) |
| 901 | $(eval $(call add_define,ERRATA_A57_859972)) |
| 902 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 903 | # Process ERRATA_A57_1319537 flag |
| 904 | $(eval $(call assert_boolean,ERRATA_A57_1319537)) |
| 905 | $(eval $(call add_define,ERRATA_A57_1319537)) |
| 906 | |
Eleanor Bonnici | c3b4ca1 | 2017-08-02 18:33:41 +0100 | [diff] [blame] | 907 | # Process ERRATA_A72_859971 flag |
| 908 | $(eval $(call assert_boolean,ERRATA_A72_859971)) |
| 909 | $(eval $(call add_define,ERRATA_A72_859971)) |
| 910 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 911 | # Process ERRATA_A72_1319367 flag |
| 912 | $(eval $(call assert_boolean,ERRATA_A72_1319367)) |
| 913 | $(eval $(call add_define,ERRATA_A72_1319367)) |
| 914 | |
Louis Mayencourt | d69722c | 2019-02-27 14:24:16 +0000 | [diff] [blame] | 915 | # Process ERRATA_A73_852427 flag |
| 916 | $(eval $(call assert_boolean,ERRATA_A73_852427)) |
| 917 | $(eval $(call add_define,ERRATA_A73_852427)) |
| 918 | |
Louis Mayencourt | 4405de6 | 2019-02-21 16:38:16 +0000 | [diff] [blame] | 919 | # Process ERRATA_A73_855423 flag |
| 920 | $(eval $(call assert_boolean,ERRATA_A73_855423)) |
| 921 | $(eval $(call add_define,ERRATA_A73_855423)) |
| 922 | |
Louis Mayencourt | 78a0aed | 2019-02-20 12:11:41 +0000 | [diff] [blame] | 923 | # Process ERRATA_A75_764081 flag |
| 924 | $(eval $(call assert_boolean,ERRATA_A75_764081)) |
| 925 | $(eval $(call add_define,ERRATA_A75_764081)) |
| 926 | |
Louis Mayencourt | 8d86870 | 2019-02-25 14:57:57 +0000 | [diff] [blame] | 927 | # Process ERRATA_A75_790748 flag |
| 928 | $(eval $(call assert_boolean,ERRATA_A75_790748)) |
| 929 | $(eval $(call add_define,ERRATA_A75_790748)) |
| 930 | |
Louis Mayencourt | 59fa218 | 2019-02-25 15:17:44 +0000 | [diff] [blame] | 931 | # Process ERRATA_A76_1073348 flag |
| 932 | $(eval $(call assert_boolean,ERRATA_A76_1073348)) |
| 933 | $(eval $(call add_define,ERRATA_A76_1073348)) |
| 934 | |
Louis Mayencourt | 0992447 | 2019-02-21 17:35:07 +0000 | [diff] [blame] | 935 | # Process ERRATA_A76_1130799 flag |
| 936 | $(eval $(call assert_boolean,ERRATA_A76_1130799)) |
| 937 | $(eval $(call add_define,ERRATA_A76_1130799)) |
| 938 | |
Louis Mayencourt | adda9d4 | 2019-02-25 11:37:38 +0000 | [diff] [blame] | 939 | # Process ERRATA_A76_1220197 flag |
| 940 | $(eval $(call assert_boolean,ERRATA_A76_1220197)) |
| 941 | $(eval $(call add_define,ERRATA_A76_1220197)) |
| 942 | |
Soby Mathew | 1d3ba1c | 2019-05-01 09:43:18 +0100 | [diff] [blame] | 943 | # Process ERRATA_A76_1257314 flag |
| 944 | $(eval $(call assert_boolean,ERRATA_A76_1257314)) |
| 945 | $(eval $(call add_define,ERRATA_A76_1257314)) |
| 946 | |
| 947 | # Process ERRATA_A76_1262606 flag |
| 948 | $(eval $(call assert_boolean,ERRATA_A76_1262606)) |
| 949 | $(eval $(call add_define,ERRATA_A76_1262606)) |
| 950 | |
| 951 | # Process ERRATA_A76_1262888 flag |
| 952 | $(eval $(call assert_boolean,ERRATA_A76_1262888)) |
| 953 | $(eval $(call add_define,ERRATA_A76_1262888)) |
| 954 | |
| 955 | # Process ERRATA_A76_1275112 flag |
| 956 | $(eval $(call assert_boolean,ERRATA_A76_1275112)) |
| 957 | $(eval $(call add_define,ERRATA_A76_1275112)) |
| 958 | |
Soby Mathew | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 959 | # Process ERRATA_A76_1286807 flag |
| 960 | $(eval $(call assert_boolean,ERRATA_A76_1286807)) |
| 961 | $(eval $(call add_define,ERRATA_A76_1286807)) |
| 962 | |
johpow01 | 9603f98 | 2020-05-29 14:17:38 -0500 | [diff] [blame] | 963 | # Process ERRATA_A76_1791580 flag |
| 964 | $(eval $(call assert_boolean,ERRATA_A76_1791580)) |
| 965 | $(eval $(call add_define,ERRATA_A76_1791580)) |
| 966 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 967 | # Process ERRATA_A76_1165522 flag |
| 968 | $(eval $(call assert_boolean,ERRATA_A76_1165522)) |
| 969 | $(eval $(call add_define,ERRATA_A76_1165522)) |
| 970 | |
johpow01 | 81365e3 | 2020-09-29 17:19:09 -0500 | [diff] [blame] | 971 | # Process ERRATA_A76_1868343 flag |
| 972 | $(eval $(call assert_boolean,ERRATA_A76_1868343)) |
| 973 | $(eval $(call add_define,ERRATA_A76_1868343)) |
| 974 | |
johpow01 | 3e34e92 | 2020-12-15 19:02:18 -0600 | [diff] [blame] | 975 | # Process ERRATA_A76_1946160 flag |
| 976 | $(eval $(call assert_boolean,ERRATA_A76_1946160)) |
| 977 | $(eval $(call add_define,ERRATA_A76_1946160)) |
| 978 | |
Bipin Ravi | 23e29e4 | 2022-11-02 16:50:03 -0500 | [diff] [blame] | 979 | # Process ERRATA_A76_2743102 flag |
| 980 | $(eval $(call assert_boolean,ERRATA_A76_2743102)) |
| 981 | $(eval $(call add_define,ERRATA_A76_2743102)) |
| 982 | |
laurenw-arm | 99ad976 | 2020-07-14 14:18:34 -0500 | [diff] [blame] | 983 | # Process ERRATA_A77_1508412 flag |
| 984 | $(eval $(call assert_boolean,ERRATA_A77_1508412)) |
| 985 | $(eval $(call add_define,ERRATA_A77_1508412)) |
| 986 | |
johpow01 | a2fa12c | 2020-09-10 13:39:26 -0500 | [diff] [blame] | 987 | # Process ERRATA_A77_1925769 flag |
| 988 | $(eval $(call assert_boolean,ERRATA_A77_1925769)) |
| 989 | $(eval $(call add_define,ERRATA_A77_1925769)) |
| 990 | |
laurenw-arm | f5dbbef | 2021-03-23 13:09:35 -0500 | [diff] [blame] | 991 | # Process ERRATA_A77_1946167 flag |
| 992 | $(eval $(call assert_boolean,ERRATA_A77_1946167)) |
| 993 | $(eval $(call add_define,ERRATA_A77_1946167)) |
| 994 | |
johpow01 | eb14610 | 2021-05-03 13:37:13 -0500 | [diff] [blame] | 995 | # Process ERRATA_A77_1791578 flag |
| 996 | $(eval $(call assert_boolean,ERRATA_A77_1791578)) |
| 997 | $(eval $(call add_define,ERRATA_A77_1791578)) |
| 998 | |
Bipin Ravi | 8e91662 | 2022-06-08 15:27:00 -0500 | [diff] [blame] | 999 | # Process ERRATA_A77_2356587 flag |
| 1000 | $(eval $(call assert_boolean,ERRATA_A77_2356587)) |
| 1001 | $(eval $(call add_define,ERRATA_A77_2356587)) |
| 1002 | |
Boyan Karatotev | e5cf16b | 2022-09-27 10:37:54 +0100 | [diff] [blame] | 1003 | # Process ERRATA_A77_1800714 flag |
| 1004 | $(eval $(call assert_boolean,ERRATA_A77_1800714)) |
| 1005 | $(eval $(call add_define,ERRATA_A77_1800714)) |
| 1006 | |
Boyan Karatotev | aaf5d29 | 2022-11-01 11:22:12 +0000 | [diff] [blame] | 1007 | # Process ERRATA_A77_2743100 flag |
| 1008 | $(eval $(call assert_boolean,ERRATA_A77_2743100)) |
| 1009 | $(eval $(call add_define,ERRATA_A77_2743100)) |
| 1010 | |
Jimmy Brisson | 3571fb9 | 2020-06-01 10:18:22 -0500 | [diff] [blame] | 1011 | # Process ERRATA_A78_1688305 flag |
| 1012 | $(eval $(call assert_boolean,ERRATA_A78_1688305)) |
| 1013 | $(eval $(call add_define,ERRATA_A78_1688305)) |
Madhukar Pappireddy | 4efede7 | 2019-12-18 15:56:27 -0600 | [diff] [blame] | 1014 | |
johpow01 | 9131eb8 | 2020-10-06 17:55:25 -0500 | [diff] [blame] | 1015 | # Process ERRATA_A78_1941498 flag |
| 1016 | $(eval $(call assert_boolean,ERRATA_A78_1941498)) |
| 1017 | $(eval $(call add_define,ERRATA_A78_1941498)) |
| 1018 | |
johpow01 | 85ea43d | 2020-10-07 15:08:01 -0500 | [diff] [blame] | 1019 | # Process ERRATA_A78_1951500 flag |
| 1020 | $(eval $(call assert_boolean,ERRATA_A78_1951500)) |
| 1021 | $(eval $(call add_define,ERRATA_A78_1951500)) |
| 1022 | |
johpow01 | b3e8294 | 2021-04-30 18:08:52 -0500 | [diff] [blame] | 1023 | # Process ERRATA_A78_1821534 flag |
| 1024 | $(eval $(call assert_boolean,ERRATA_A78_1821534)) |
| 1025 | $(eval $(call add_define,ERRATA_A78_1821534)) |
| 1026 | |
nayanpatel-arm | 80bf7a5 | 2021-08-11 13:33:00 -0700 | [diff] [blame] | 1027 | # Process ERRATA_A78_1952683 flag |
| 1028 | $(eval $(call assert_boolean,ERRATA_A78_1952683)) |
| 1029 | $(eval $(call add_define,ERRATA_A78_1952683)) |
| 1030 | |
nayanpatel-arm | 39e0865 | 2021-09-28 17:31:50 -0700 | [diff] [blame] | 1031 | # Process ERRATA_A78_2132060 flag |
| 1032 | $(eval $(call assert_boolean,ERRATA_A78_2132060)) |
| 1033 | $(eval $(call add_define,ERRATA_A78_2132060)) |
| 1034 | |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 1035 | # Process ERRATA_A78_2242635 flag |
| 1036 | $(eval $(call assert_boolean,ERRATA_A78_2242635)) |
| 1037 | $(eval $(call add_define,ERRATA_A78_2242635)) |
| 1038 | |
John Powell | 12bc0de | 2022-05-03 15:22:57 -0500 | [diff] [blame] | 1039 | # Process ERRATA_A78_2376745 flag |
| 1040 | $(eval $(call assert_boolean,ERRATA_A78_2376745)) |
| 1041 | $(eval $(call add_define,ERRATA_A78_2376745)) |
| 1042 | |
John Powell | a93b7e5 | 2022-05-03 15:52:11 -0500 | [diff] [blame] | 1043 | # Process ERRATA_A78_2395406 flag |
| 1044 | $(eval $(call assert_boolean,ERRATA_A78_2395406)) |
| 1045 | $(eval $(call add_define,ERRATA_A78_2395406)) |
| 1046 | |
Bipin Ravi | 8f78e0d | 2022-12-15 14:48:21 -0600 | [diff] [blame] | 1047 | # Process ERRATA_A78_2772019 flag |
| 1048 | $(eval $(call assert_boolean,ERRATA_A78_2772019)) |
| 1049 | $(eval $(call add_define,ERRATA_A78_2772019)) |
| 1050 | |
Sona Mathew | f13c1a9 | 2023-01-11 12:55:30 -0600 | [diff] [blame] | 1051 | # Process ERRATA_A78_2779479 flag |
| 1052 | $(eval $(call assert_boolean,ERRATA_A78_2779479)) |
| 1053 | $(eval $(call add_define,ERRATA_A78_2779479)) |
| 1054 | |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 1055 | # Process ERRATA_A78_AE_1941500 flag |
| 1056 | $(eval $(call assert_boolean,ERRATA_A78_AE_1941500)) |
| 1057 | $(eval $(call add_define,ERRATA_A78_AE_1941500)) |
| 1058 | |
| 1059 | # Process ERRATA_A78_AE_1951502 flag |
| 1060 | $(eval $(call assert_boolean,ERRATA_A78_AE_1951502)) |
| 1061 | $(eval $(call add_define,ERRATA_A78_AE_1951502)) |
| 1062 | |
Varun Wadekar | 9030a6c | 2022-03-09 22:04:00 +0000 | [diff] [blame] | 1063 | # Process ERRATA_A78_AE_2376748 flag |
| 1064 | $(eval $(call assert_boolean,ERRATA_A78_AE_2376748)) |
| 1065 | $(eval $(call add_define,ERRATA_A78_AE_2376748)) |
| 1066 | |
Varun Wadekar | ac6bf2e | 2022-03-09 22:20:32 +0000 | [diff] [blame] | 1067 | # Process ERRATA_A78_AE_2395408 flag |
| 1068 | $(eval $(call assert_boolean,ERRATA_A78_AE_2395408)) |
| 1069 | $(eval $(call add_define,ERRATA_A78_AE_2395408)) |
| 1070 | |
laurenw-arm | 4dc1887 | 2022-07-12 10:43:52 -0500 | [diff] [blame] | 1071 | # Process ERRATA_A78C_2132064 flag |
| 1072 | $(eval $(call assert_boolean,ERRATA_A78C_2132064)) |
| 1073 | $(eval $(call add_define,ERRATA_A78C_2132064)) |
| 1074 | |
Bipin Ravi | 9c36e12 | 2022-07-15 17:20:16 -0500 | [diff] [blame] | 1075 | # Process ERRATA_A78C_2242638 flag |
| 1076 | $(eval $(call assert_boolean,ERRATA_A78C_2242638)) |
| 1077 | $(eval $(call add_define,ERRATA_A78C_2242638)) |
| 1078 | |
Akram Ahmad | fbc1edb | 2022-09-06 11:23:25 +0100 | [diff] [blame] | 1079 | # Process ERRATA_A78C_2376749 flag |
| 1080 | $(eval $(call assert_boolean,ERRATA_A78C_2376749)) |
| 1081 | $(eval $(call add_define,ERRATA_A78C_2376749)) |
| 1082 | |
Akram Ahmad | dbff7cf | 2022-07-19 14:38:46 +0100 | [diff] [blame] | 1083 | # Process ERRATA_A78C_2395411 flag |
| 1084 | $(eval $(call assert_boolean,ERRATA_A78C_2395411)) |
| 1085 | $(eval $(call add_define,ERRATA_A78C_2395411)) |
| 1086 | |
Bipin Ravi | e0b52cc | 2023-01-18 11:03:21 -0600 | [diff] [blame] | 1087 | # Process ERRATA_A78C_2772121 flag |
| 1088 | $(eval $(call assert_boolean,ERRATA_A78C_2772121)) |
| 1089 | $(eval $(call add_define,ERRATA_A78C_2772121)) |
| 1090 | |
Okash Khawaja | baee390 | 2022-04-21 12:20:21 +0100 | [diff] [blame] | 1091 | # Process ERRATA_X1_1821534 flag |
| 1092 | $(eval $(call assert_boolean,ERRATA_X1_1821534)) |
| 1093 | $(eval $(call add_define,ERRATA_X1_1821534)) |
| 1094 | |
| 1095 | # Process ERRATA_X1_1688305 flag |
| 1096 | $(eval $(call assert_boolean,ERRATA_X1_1688305)) |
| 1097 | $(eval $(call add_define,ERRATA_X1_1688305)) |
| 1098 | |
| 1099 | # Process ERRATA_X1_1827429 flag |
| 1100 | $(eval $(call assert_boolean,ERRATA_X1_1827429)) |
| 1101 | $(eval $(call add_define,ERRATA_X1_1827429)) |
| 1102 | |
John Tsichritzis | 56369c1 | 2019-02-19 13:49:06 +0000 | [diff] [blame] | 1103 | # Process ERRATA_N1_1043202 flag |
| 1104 | $(eval $(call assert_boolean,ERRATA_N1_1043202)) |
| 1105 | $(eval $(call add_define,ERRATA_N1_1043202)) |
Dimitris Papastamos | 7ca21db | 2018-03-26 16:46:01 +0100 | [diff] [blame] | 1106 | |
lauwal01 | bd555f4 | 2019-06-24 11:23:50 -0500 | [diff] [blame] | 1107 | # Process ERRATA_N1_1073348 flag |
| 1108 | $(eval $(call assert_boolean,ERRATA_N1_1073348)) |
| 1109 | $(eval $(call add_define,ERRATA_N1_1073348)) |
| 1110 | |
lauwal01 | 363ee3c | 2019-06-24 11:28:34 -0500 | [diff] [blame] | 1111 | # Process ERRATA_N1_1130799 flag |
| 1112 | $(eval $(call assert_boolean,ERRATA_N1_1130799)) |
| 1113 | $(eval $(call add_define,ERRATA_N1_1130799)) |
| 1114 | |
lauwal01 | f2adb13 | 2019-06-24 11:32:40 -0500 | [diff] [blame] | 1115 | # Process ERRATA_N1_1165347 flag |
| 1116 | $(eval $(call assert_boolean,ERRATA_N1_1165347)) |
| 1117 | $(eval $(call add_define,ERRATA_N1_1165347)) |
| 1118 | |
lauwal01 | e159044 | 2019-06-24 11:35:37 -0500 | [diff] [blame] | 1119 | # Process ERRATA_N1_1207823 flag |
| 1120 | $(eval $(call assert_boolean,ERRATA_N1_1207823)) |
| 1121 | $(eval $(call add_define,ERRATA_N1_1207823)) |
| 1122 | |
lauwal01 | 197f14c | 2019-06-24 11:38:53 -0500 | [diff] [blame] | 1123 | # Process ERRATA_N1_1220197 flag |
| 1124 | $(eval $(call assert_boolean,ERRATA_N1_1220197)) |
| 1125 | $(eval $(call add_define,ERRATA_N1_1220197)) |
| 1126 | |
lauwal01 | 07c2a23 | 2019-06-24 11:42:02 -0500 | [diff] [blame] | 1127 | # Process ERRATA_N1_1257314 flag |
| 1128 | $(eval $(call assert_boolean,ERRATA_N1_1257314)) |
| 1129 | $(eval $(call add_define,ERRATA_N1_1257314)) |
| 1130 | |
lauwal01 | 42771af | 2019-06-24 11:44:58 -0500 | [diff] [blame] | 1131 | # Process ERRATA_N1_1262606 flag |
| 1132 | $(eval $(call assert_boolean,ERRATA_N1_1262606)) |
| 1133 | $(eval $(call add_define,ERRATA_N1_1262606)) |
| 1134 | |
lauwal01 | 00396bf | 2019-06-24 11:47:30 -0500 | [diff] [blame] | 1135 | # Process ERRATA_N1_1262888 flag |
| 1136 | $(eval $(call assert_boolean,ERRATA_N1_1262888)) |
| 1137 | $(eval $(call add_define,ERRATA_N1_1262888)) |
| 1138 | |
lauwal01 | 644b6ed | 2019-06-24 11:49:01 -0500 | [diff] [blame] | 1139 | # Process ERRATA_N1_1275112 flag |
| 1140 | $(eval $(call assert_boolean,ERRATA_N1_1275112)) |
| 1141 | $(eval $(call add_define,ERRATA_N1_1275112)) |
| 1142 | |
Andre Przywara | b934740 | 2019-05-20 14:57:06 +0100 | [diff] [blame] | 1143 | # Process ERRATA_N1_1315703 flag |
| 1144 | $(eval $(call assert_boolean,ERRATA_N1_1315703)) |
| 1145 | $(eval $(call add_define,ERRATA_N1_1315703)) |
| 1146 | |
laurenw-arm | 94accd3 | 2019-08-20 15:51:24 -0500 | [diff] [blame] | 1147 | # Process ERRATA_N1_1542419 flag |
| 1148 | $(eval $(call assert_boolean,ERRATA_N1_1542419)) |
| 1149 | $(eval $(call add_define,ERRATA_N1_1542419)) |
| 1150 | |
johpow01 | e2428fd | 2020-08-05 12:27:12 -0500 | [diff] [blame] | 1151 | # Process ERRATA_N1_1868343 flag |
| 1152 | $(eval $(call assert_boolean,ERRATA_N1_1868343)) |
| 1153 | $(eval $(call add_define,ERRATA_N1_1868343)) |
| 1154 | |
johpow01 | f1a84f5 | 2020-10-07 14:33:15 -0500 | [diff] [blame] | 1155 | # Process ERRATA_N1_1946160 flag |
| 1156 | $(eval $(call assert_boolean,ERRATA_N1_1946160)) |
| 1157 | $(eval $(call add_define,ERRATA_N1_1946160)) |
| 1158 | |
Bipin Ravi | 9edf249 | 2022-11-02 16:12:01 -0500 | [diff] [blame] | 1159 | # Process ERRATA_N1_2743102 flag |
| 1160 | $(eval $(call assert_boolean,ERRATA_N1_2743102)) |
| 1161 | $(eval $(call add_define,ERRATA_N1_2743102)) |
nayanpatel-arm | 277581e | 2021-08-06 17:46:10 -0700 | [diff] [blame] | 1162 | |
Juan Pablo Conde | 31c9337 | 2022-02-28 14:14:44 -0500 | [diff] [blame] | 1163 | # Process ERRATA_V1_1618635 flag |
| 1164 | $(eval $(call assert_boolean,ERRATA_V1_1618635)) |
| 1165 | $(eval $(call add_define,ERRATA_V1_1618635)) |
| 1166 | |
laurenw-arm | 3c86d83 | 2021-08-02 13:22:32 -0500 | [diff] [blame] | 1167 | # Process ERRATA_V1_1774420 flag |
| 1168 | $(eval $(call assert_boolean,ERRATA_V1_1774420)) |
| 1169 | $(eval $(call add_define,ERRATA_V1_1774420)) |
| 1170 | |
johpow01 | c73b03c | 2021-05-03 15:33:39 -0500 | [diff] [blame] | 1171 | # Process ERRATA_V1_1791573 flag |
| 1172 | $(eval $(call assert_boolean,ERRATA_V1_1791573)) |
| 1173 | $(eval $(call add_define,ERRATA_V1_1791573)) |
| 1174 | |
laurenw-arm | b1923e9 | 2021-08-02 14:40:08 -0500 | [diff] [blame] | 1175 | # Process ERRATA_V1_1852267 flag |
| 1176 | $(eval $(call assert_boolean,ERRATA_V1_1852267)) |
| 1177 | $(eval $(call add_define,ERRATA_V1_1852267)) |
| 1178 | |
laurenw-arm | 6b56f96 | 2021-08-02 15:00:15 -0500 | [diff] [blame] | 1179 | # Process ERRATA_V1_1925756 flag |
| 1180 | $(eval $(call assert_boolean,ERRATA_V1_1925756)) |
| 1181 | $(eval $(call add_define,ERRATA_V1_1925756)) |
| 1182 | |
johpow01 | 07acb4f | 2020-10-07 16:38:37 -0500 | [diff] [blame] | 1183 | # Process ERRATA_V1_1940577 flag |
| 1184 | $(eval $(call assert_boolean,ERRATA_V1_1940577)) |
| 1185 | $(eval $(call add_define,ERRATA_V1_1940577)) |
| 1186 | |
johpow01 | 97db675 | 2021-08-02 18:59:08 -0500 | [diff] [blame] | 1187 | # Process ERRATA_V1_1966096 flag |
| 1188 | $(eval $(call assert_boolean,ERRATA_V1_1966096)) |
| 1189 | $(eval $(call add_define,ERRATA_V1_1966096)) |
| 1190 | |
johpow01 | ad1ca34 | 2021-08-03 14:35:20 -0500 | [diff] [blame] | 1191 | # Process ERRATA_V1_2139242 flag |
| 1192 | $(eval $(call assert_boolean,ERRATA_V1_2139242)) |
| 1193 | $(eval $(call add_define,ERRATA_V1_2139242)) |
| 1194 | |
nayanpatel-arm | fc26ffe | 2021-09-28 13:41:03 -0700 | [diff] [blame] | 1195 | # Process ERRATA_V1_2108267 flag |
| 1196 | $(eval $(call assert_boolean,ERRATA_V1_2108267)) |
| 1197 | $(eval $(call add_define,ERRATA_V1_2108267)) |
| 1198 | |
johpow01 | 4de29cb | 2021-09-02 18:29:17 -0500 | [diff] [blame] | 1199 | # Process ERRATA_V1_2216392 flag |
| 1200 | $(eval $(call assert_boolean,ERRATA_V1_2216392)) |
| 1201 | $(eval $(call add_define,ERRATA_V1_2216392)) |
| 1202 | |
Bipin Ravi | 971938f | 2022-06-08 16:28:46 -0500 | [diff] [blame] | 1203 | # Process ERRATA_V1_2294912 flag |
| 1204 | $(eval $(call assert_boolean,ERRATA_V1_2294912)) |
| 1205 | $(eval $(call add_define,ERRATA_V1_2294912)) |
| 1206 | |
Bipin Ravi | b4cb31f | 2022-06-14 17:09:23 -0500 | [diff] [blame] | 1207 | # Process ERRATA_V1_2372203 flag |
| 1208 | $(eval $(call assert_boolean,ERRATA_V1_2372203)) |
| 1209 | $(eval $(call add_define,ERRATA_V1_2372203)) |
| 1210 | |
Bipin Ravi | fe4b0c4 | 2022-12-15 11:57:53 -0600 | [diff] [blame] | 1211 | # Process ERRATA_V1_2743093 flag |
| 1212 | $(eval $(call assert_boolean,ERRATA_V1_2743093)) |
| 1213 | $(eval $(call add_define,ERRATA_V1_2743093)) |
| 1214 | |
Sona Mathew | fe405d0 | 2023-01-11 17:04:24 -0600 | [diff] [blame] | 1215 | # Process ERRATA_V1_2779461 flag |
| 1216 | $(eval $(call assert_boolean,ERRATA_V1_2779461)) |
| 1217 | $(eval $(call add_define,ERRATA_V1_2779461)) |
| 1218 | |
nayanpatel-arm | e55d325 | 2021-08-06 16:39:48 -0700 | [diff] [blame] | 1219 | # Process ERRATA_A710_1987031 flag |
| 1220 | $(eval $(call assert_boolean,ERRATA_A710_1987031)) |
| 1221 | $(eval $(call add_define,ERRATA_A710_1987031)) |
| 1222 | |
nayanpatel-arm | 7597d08 | 2021-08-25 17:35:15 -0700 | [diff] [blame] | 1223 | # Process ERRATA_A710_2081180 flag |
| 1224 | $(eval $(call assert_boolean,ERRATA_A710_2081180)) |
| 1225 | $(eval $(call add_define,ERRATA_A710_2081180)) |
| 1226 | |
nayanpatel-arm | 0b338b4 | 2021-09-16 15:27:53 -0700 | [diff] [blame] | 1227 | # Process ERRATA_A710_2083908 flag |
| 1228 | $(eval $(call assert_boolean,ERRATA_A710_2083908)) |
| 1229 | $(eval $(call add_define,ERRATA_A710_2083908)) |
| 1230 | |
nayanpatel-arm | f2dce0e | 2021-09-22 12:35:03 -0700 | [diff] [blame] | 1231 | # Process ERRATA_A710_2058056 flag |
| 1232 | $(eval $(call assert_boolean,ERRATA_A710_2058056)) |
| 1233 | $(eval $(call add_define,ERRATA_A710_2058056)) |
| 1234 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 1235 | # Process ERRATA_A710_2055002 flag |
| 1236 | $(eval $(call assert_boolean,ERRATA_A710_2055002)) |
| 1237 | $(eval $(call add_define,ERRATA_A710_2055002)) |
| 1238 | |
| 1239 | # Process ERRATA_A710_2017096 flag |
| 1240 | $(eval $(call assert_boolean,ERRATA_A710_2017096)) |
| 1241 | $(eval $(call add_define,ERRATA_A710_2017096)) |
| 1242 | |
| 1243 | # Process ERRATA_A710_2267065 flag |
| 1244 | $(eval $(call assert_boolean,ERRATA_A710_2267065)) |
| 1245 | $(eval $(call add_define,ERRATA_A710_2267065)) |
| 1246 | |
| 1247 | # Process ERRATA_A710_2136059 flag |
| 1248 | $(eval $(call assert_boolean,ERRATA_A710_2136059)) |
| 1249 | $(eval $(call add_define,ERRATA_A710_2136059)) |
| 1250 | |
Akram Ahmad | 1714c1d | 2022-07-21 15:25:08 +0100 | [diff] [blame] | 1251 | # Process ERRATA_A710_2147715 flag |
| 1252 | $(eval $(call assert_boolean,ERRATA_A710_2147715)) |
| 1253 | $(eval $(call add_define,ERRATA_A710_2147715)) |
| 1254 | |
Jayanth Dodderi Chidanand | de4f589 | 2022-09-01 22:09:54 +0100 | [diff] [blame] | 1255 | # Process ERRATA_A710_2216384 flag |
| 1256 | $(eval $(call assert_boolean,ERRATA_A710_2216384)) |
| 1257 | $(eval $(call add_define,ERRATA_A710_2216384)) |
| 1258 | |
johpow01 | 7249fd0 | 2022-02-28 18:34:04 -0600 | [diff] [blame] | 1259 | # Process ERRATA_A710_2282622 flag |
| 1260 | $(eval $(call assert_boolean,ERRATA_A710_2282622)) |
| 1261 | $(eval $(call add_define,ERRATA_A710_2282622)) |
| 1262 | |
Boyan Karatotev | f8de535 | 2022-10-03 14:21:28 +0100 | [diff] [blame] | 1263 | # Process ERRATA_A710_2291219 flag |
| 1264 | $(eval $(call assert_boolean,ERRATA_A710_2291219)) |
| 1265 | $(eval $(call add_define,ERRATA_A710_2291219)) |
| 1266 | |
johpow01 | 7d52a8f | 2022-03-09 16:23:04 -0600 | [diff] [blame] | 1267 | # Process ERRATA_A710_2008768 flag |
| 1268 | $(eval $(call assert_boolean,ERRATA_A710_2008768)) |
| 1269 | $(eval $(call add_define,ERRATA_A710_2008768)) |
| 1270 | |
Bipin Ravi | 77eab29 | 2022-07-12 15:53:21 -0500 | [diff] [blame] | 1271 | # Process ERRATA_A710_2371105 flag |
| 1272 | $(eval $(call assert_boolean,ERRATA_A710_2371105)) |
| 1273 | $(eval $(call add_define,ERRATA_A710_2371105)) |
| 1274 | |
Bipin Ravi | ef9a155 | 2022-12-07 13:32:35 -0600 | [diff] [blame] | 1275 | # Process ERRATA_A710_2768515 flag |
| 1276 | $(eval $(call assert_boolean,ERRATA_A710_2768515)) |
| 1277 | $(eval $(call add_define,ERRATA_A710_2768515)) |
| 1278 | |
Bipin Ravi | cc744bf | 2022-12-07 17:01:26 -0600 | [diff] [blame] | 1279 | # Process ERRATA_N2_2002655 flag |
| 1280 | $(eval $(call assert_boolean,ERRATA_N2_2002655)) |
| 1281 | $(eval $(call add_define,ERRATA_N2_2002655)) |
| 1282 | |
Bipin Ravi | eb35e85 | 2021-03-30 16:08:32 -0500 | [diff] [blame] | 1283 | # Process ERRATA_N2_2067956 flag |
| 1284 | $(eval $(call assert_boolean,ERRATA_N2_2067956)) |
| 1285 | $(eval $(call add_define,ERRATA_N2_2067956)) |
| 1286 | |
Bipin Ravi | 7f56547 | 2021-03-31 10:10:27 -0500 | [diff] [blame] | 1287 | # Process ERRATA_N2_2025414 flag |
| 1288 | $(eval $(call assert_boolean,ERRATA_N2_2025414)) |
| 1289 | $(eval $(call add_define,ERRATA_N2_2025414)) |
| 1290 | |
Bipin Ravi | 7e03069 | 2021-08-30 13:02:51 -0500 | [diff] [blame] | 1291 | # Process ERRATA_N2_2189731 flag |
| 1292 | $(eval $(call assert_boolean,ERRATA_N2_2189731)) |
| 1293 | $(eval $(call add_define,ERRATA_N2_2189731)) |
| 1294 | |
Bipin Ravi | 0ba631c | 2021-09-01 01:36:43 -0500 | [diff] [blame] | 1295 | # Process ERRATA_N2_2138956 flag |
| 1296 | $(eval $(call assert_boolean,ERRATA_N2_2138956)) |
| 1297 | $(eval $(call add_define,ERRATA_N2_2138956)) |
| 1298 | |
nayanpatel-arm | d4c5f9c | 2021-09-28 09:46:45 -0700 | [diff] [blame] | 1299 | # Process ERRATA_N2_2138953 flag |
| 1300 | $(eval $(call assert_boolean,ERRATA_N2_2138953)) |
| 1301 | $(eval $(call add_define,ERRATA_N2_2138953)) |
| 1302 | |
nayanpatel-arm | 2f15399 | 2021-10-06 15:31:24 -0700 | [diff] [blame] | 1303 | # Process ERRATA_N2_2242415 flag |
| 1304 | $(eval $(call assert_boolean,ERRATA_N2_2242415)) |
| 1305 | $(eval $(call add_define,ERRATA_N2_2242415)) |
| 1306 | |
nayanpatel-arm | 8e1aa01 | 2021-10-20 18:28:58 -0700 | [diff] [blame] | 1307 | # Process ERRATA_N2_2138958 flag |
| 1308 | $(eval $(call assert_boolean,ERRATA_N2_2138958)) |
| 1309 | $(eval $(call add_define,ERRATA_N2_2138958)) |
| 1310 | |
nayanpatel-arm | fed9813 | 2021-10-07 17:59:33 -0700 | [diff] [blame] | 1311 | # Process ERRATA_N2_2242400 flag |
| 1312 | $(eval $(call assert_boolean,ERRATA_N2_2242400)) |
| 1313 | $(eval $(call add_define,ERRATA_N2_2242400)) |
| 1314 | |
nayanpatel-arm | 45b9f6f | 2021-10-20 17:30:46 -0700 | [diff] [blame] | 1315 | # Process ERRATA_N2_2280757 flag |
| 1316 | $(eval $(call assert_boolean,ERRATA_N2_2280757)) |
| 1317 | $(eval $(call add_define,ERRATA_N2_2280757)) |
| 1318 | |
Boyan Karatotev | d3f8b4d | 2022-10-03 14:07:08 +0100 | [diff] [blame] | 1319 | # Process ERRATA_N2_2326639 flag |
| 1320 | $(eval $(call assert_boolean,ERRATA_N2_2326639)) |
| 1321 | $(eval $(call add_define,ERRATA_N2_2326639)) |
| 1322 | |
Akram Ahmad | b621bda | 2022-07-18 12:27:29 +0100 | [diff] [blame] | 1323 | # Process ERRATA_N2_2376738 flag |
| 1324 | $(eval $(call assert_boolean,ERRATA_N2_2376738)) |
| 1325 | $(eval $(call add_define,ERRATA_N2_2376738)) |
| 1326 | |
Daniel Boulby | 1af2b11 | 2022-07-06 14:33:13 +0100 | [diff] [blame] | 1327 | # Process ERRATA_N2_2388450 flag |
| 1328 | $(eval $(call assert_boolean,ERRATA_N2_2388450)) |
| 1329 | $(eval $(call add_define,ERRATA_N2_2388450)) |
| 1330 | |
Bipin Ravi | cc744bf | 2022-12-07 17:01:26 -0600 | [diff] [blame] | 1331 | # Process ERRATA_N2_2743089 flag |
| 1332 | $(eval $(call assert_boolean,ERRATA_N2_2743089)) |
| 1333 | $(eval $(call add_define,ERRATA_N2_2743089)) |
| 1334 | |
johpow01 | 0afef36 | 2021-12-02 13:25:50 -0600 | [diff] [blame] | 1335 | # Process ERRATA_X2_2002765 flag |
| 1336 | $(eval $(call assert_boolean,ERRATA_X2_2002765)) |
| 1337 | $(eval $(call add_define,ERRATA_X2_2002765)) |
| 1338 | |
johpow01 | f6c37de | 2021-12-03 11:27:33 -0600 | [diff] [blame] | 1339 | # Process ERRATA_X2_2058056 flag |
| 1340 | $(eval $(call assert_boolean,ERRATA_X2_2058056)) |
| 1341 | $(eval $(call add_define,ERRATA_X2_2058056)) |
| 1342 | |
johpow01 | 15f10bd | 2021-12-01 17:40:39 -0600 | [diff] [blame] | 1343 | # Process ERRATA_X2_2083908 flag |
| 1344 | $(eval $(call assert_boolean,ERRATA_X2_2083908)) |
| 1345 | $(eval $(call add_define,ERRATA_X2_2083908)) |
| 1346 | |
Bipin Ravi | 2f73d97 | 2022-01-20 00:01:04 -0600 | [diff] [blame] | 1347 | # Process ERRATA_X2_2017096 flag |
| 1348 | $(eval $(call assert_boolean,ERRATA_X2_2017096)) |
| 1349 | $(eval $(call add_define,ERRATA_X2_2017096)) |
| 1350 | |
Bipin Ravi | 9ad5478 | 2022-01-20 00:42:05 -0600 | [diff] [blame] | 1351 | # Process ERRATA_X2_2081180 flag |
| 1352 | $(eval $(call assert_boolean,ERRATA_X2_2081180)) |
| 1353 | $(eval $(call add_define,ERRATA_X2_2081180)) |
| 1354 | |
Bipin Ravi | 78b7208 | 2022-02-06 01:29:31 -0600 | [diff] [blame] | 1355 | # Process ERRATA_X2_2216384 flag |
| 1356 | $(eval $(call assert_boolean,ERRATA_X2_2216384)) |
| 1357 | $(eval $(call add_define,ERRATA_X2_2216384)) |
| 1358 | |
Bipin Ravi | c6b6521 | 2022-03-08 10:37:43 -0600 | [diff] [blame] | 1359 | # Process ERRATA_X2_2147715 flag |
| 1360 | $(eval $(call assert_boolean,ERRATA_X2_2147715)) |
| 1361 | $(eval $(call add_define,ERRATA_X2_2147715)) |
| 1362 | |
Bipin Ravi | 7dccf8f | 2022-12-22 14:19:59 -0600 | [diff] [blame] | 1363 | # Process ERRATA_X2_2282622 flag |
| 1364 | $(eval $(call assert_boolean,ERRATA_X2_2282622)) |
| 1365 | $(eval $(call add_define,ERRATA_X2_2282622)) |
| 1366 | |
Bipin Ravi | 4e315c3 | 2022-07-12 17:13:01 -0500 | [diff] [blame] | 1367 | # Process ERRATA_X2_2371105 flag |
| 1368 | $(eval $(call assert_boolean,ERRATA_X2_2371105)) |
| 1369 | $(eval $(call add_define,ERRATA_X2_2371105)) |
| 1370 | |
Bipin Ravi | 86839eb | 2022-12-07 13:54:02 -0600 | [diff] [blame] | 1371 | # Process ERRATA_X2_2768515 flag |
| 1372 | $(eval $(call assert_boolean,ERRATA_X2_2768515)) |
| 1373 | $(eval $(call add_define,ERRATA_X2_2768515)) |
| 1374 | |
Boyan Karatotev | 6559dbd | 2022-10-03 14:18:28 +0100 | [diff] [blame] | 1375 | # Process ERRATA_X3_2313909 flag |
| 1376 | $(eval $(call assert_boolean,ERRATA_X3_2313909)) |
| 1377 | $(eval $(call add_define,ERRATA_X3_2313909)) |
| 1378 | |
Harrison Mutai | 82dd5ac | 2022-11-11 14:09:55 +0000 | [diff] [blame] | 1379 | # Process ERRATA_X3_2615812 flag |
| 1380 | $(eval $(call assert_boolean,ERRATA_X3_2615812)) |
| 1381 | $(eval $(call add_define,ERRATA_X3_2615812)) |
| 1382 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 1383 | # Process ERRATA_A510_1922240 flag |
| 1384 | $(eval $(call assert_boolean,ERRATA_A510_1922240)) |
| 1385 | $(eval $(call add_define,ERRATA_A510_1922240)) |
| 1386 | |
johpow01 | 49f60dd | 2022-01-06 14:54:49 -0600 | [diff] [blame] | 1387 | # Process ERRATA_A510_2288014 flag |
| 1388 | $(eval $(call assert_boolean,ERRATA_A510_2288014)) |
| 1389 | $(eval $(call add_define,ERRATA_A510_2288014)) |
| 1390 | |
johpow01 | 8276f25 | 2022-01-07 17:12:31 -0600 | [diff] [blame] | 1391 | # Process ERRATA_A510_2042739 flag |
| 1392 | $(eval $(call assert_boolean,ERRATA_A510_2042739)) |
| 1393 | $(eval $(call add_define,ERRATA_A510_2042739)) |
| 1394 | |
johpow01 | 5a99300 | 2022-01-11 17:54:41 -0600 | [diff] [blame] | 1395 | # Process ERRATA_A510_2041909 flag |
| 1396 | $(eval $(call assert_boolean,ERRATA_A510_2041909)) |
| 1397 | $(eval $(call add_define,ERRATA_A510_2041909)) |
| 1398 | |
johpow01 | 3ba9cb2 | 2022-02-13 21:00:10 -0600 | [diff] [blame] | 1399 | # Process ERRATA_A510_2250311 flag |
| 1400 | $(eval $(call assert_boolean,ERRATA_A510_2250311)) |
| 1401 | $(eval $(call add_define,ERRATA_A510_2250311)) |
| 1402 | |
johpow01 | 3ead295 | 2022-02-14 20:19:08 -0600 | [diff] [blame] | 1403 | # Process ERRATA_A510_2218950 flag |
| 1404 | $(eval $(call assert_boolean,ERRATA_A510_2218950)) |
| 1405 | $(eval $(call add_define,ERRATA_A510_2218950)) |
| 1406 | |
johpow01 | ac55c01 | 2022-02-15 22:55:22 -0600 | [diff] [blame] | 1407 | # Process ERRATA_A510_2172148 flag |
| 1408 | $(eval $(call assert_boolean,ERRATA_A510_2172148)) |
| 1409 | $(eval $(call add_define,ERRATA_A510_2172148)) |
| 1410 | |
Akram Ahmad | a85254e | 2022-07-21 14:01:33 +0100 | [diff] [blame] | 1411 | # Process ERRATA_A510_2347730 flag |
| 1412 | $(eval $(call assert_boolean,ERRATA_A510_2347730)) |
| 1413 | $(eval $(call add_define,ERRATA_A510_2347730)) |
| 1414 | |
Akram Ahmad | 60accba | 2022-07-22 16:20:44 +0100 | [diff] [blame] | 1415 | # Process ERRATA_A510_2371937 flag |
| 1416 | $(eval $(call assert_boolean,ERRATA_A510_2371937)) |
| 1417 | $(eval $(call add_define,ERRATA_A510_2371937)) |
| 1418 | |
Akram Ahmad | 89034d6 | 2022-09-21 13:59:56 +0100 | [diff] [blame] | 1419 | # Process ERRATA_A510_2666669 flag |
| 1420 | $(eval $(call assert_boolean,ERRATA_A510_2666669)) |
| 1421 | $(eval $(call add_define,ERRATA_A510_2666669)) |
| 1422 | |
Harrison Mutai | e5249fe | 2022-12-09 12:14:25 +0000 | [diff] [blame] | 1423 | # Process ERRATA_A510_2684597 flag |
| 1424 | $(eval $(call assert_boolean,ERRATA_A510_2684597)) |
| 1425 | $(eval $(call add_define,ERRATA_A510_2684597)) |
| 1426 | |
Akram Ahmad | 89034d6 | 2022-09-21 13:59:56 +0100 | [diff] [blame] | 1427 | #Process ERRATA_DSU_798953 flag |
Louis Mayencourt | 4498b15 | 2019-04-09 16:29:01 +0100 | [diff] [blame] | 1428 | $(eval $(call assert_boolean,ERRATA_DSU_798953)) |
| 1429 | $(eval $(call add_define,ERRATA_DSU_798953)) |
| 1430 | |
John Tsichritzis | 4daa1de | 2018-07-23 09:11:59 +0100 | [diff] [blame] | 1431 | # Process ERRATA_DSU_936184 flag |
| 1432 | $(eval $(call assert_boolean,ERRATA_DSU_936184)) |
| 1433 | $(eval $(call add_define,ERRATA_DSU_936184)) |
| 1434 | |
Bipin Ravi | af40d69 | 2021-12-22 14:35:21 -0600 | [diff] [blame] | 1435 | # Process ERRATA_DSU_2313941 flag |
| 1436 | $(eval $(call assert_boolean,ERRATA_DSU_2313941)) |
| 1437 | $(eval $(call add_define,ERRATA_DSU_2313941)) |
| 1438 | |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 1439 | # Errata build flags |
| 1440 | ifneq (${ERRATA_A53_843419},0) |
Douglas Raillard | d0c8273 | 2017-06-22 14:44:48 +0100 | [diff] [blame] | 1441 | TF_LDFLAGS_aarch64 += --fix-cortex-a53-843419 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 1442 | endif |
| 1443 | |
| 1444 | ifneq (${ERRATA_A53_835769},0) |
| 1445 | TF_CFLAGS_aarch64 += -mfix-cortex-a53-835769 |
Douglas Raillard | d0c8273 | 2017-06-22 14:44:48 +0100 | [diff] [blame] | 1446 | TF_LDFLAGS_aarch64 += --fix-cortex-a53-835769 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 1447 | endif |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 1448 | |
| 1449 | ifneq ($(filter 1,${ERRATA_A53_1530924} ${ERRATA_A55_1530923} \ |
| 1450 | ${ERRATA_A57_1319537} ${ERRATA_A72_1319367} ${ERRATA_A76_1165522}),) |
| 1451 | ERRATA_SPECULATIVE_AT := 1 |
| 1452 | else |
| 1453 | ERRATA_SPECULATIVE_AT := 0 |
| 1454 | endif |