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 | |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 8 | include ${MAKE_HELPERS_DIRECTORY}$/build_macros.mk |
| 9 | |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 10 | # Cortex A57 specific optimisation to skip L1 cache flush when |
| 11 | # cluster is powered down. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 12 | CPU_FLAG_LIST += SKIP_A57_L1_FLUSH_PWR_DWN |
Soby Mathew | 937488b | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 13 | |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 14 | # Flag to disable the cache non-temporal hint. |
| 15 | # It is enabled by default. |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 16 | A53_DISABLE_NON_TEMPORAL_HINT ?=1 |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 17 | CPU_FLAG_LIST += A53_DISABLE_NON_TEMPORAL_HINT |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 18 | |
| 19 | # Flag to disable the cache non-temporal hint. |
| 20 | # It is enabled by default. |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 21 | A57_DISABLE_NON_TEMPORAL_HINT ?=1 |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 22 | CPU_FLAG_LIST += A57_DISABLE_NON_TEMPORAL_HINT |
Sandrine Bailleux | d481759 | 2016-01-13 14:57:38 +0000 | [diff] [blame] | 23 | |
Varun Wadekar | 5ee3abc | 2018-06-12 16:49:12 -0700 | [diff] [blame] | 24 | # Flag to enable higher performance non-cacheable load forwarding. |
| 25 | # It is disabled by default. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 26 | CPU_FLAG_LIST += A57_ENABLE_NONCACHEABLE_LOAD_FWD |
Varun Wadekar | 5ee3abc | 2018-06-12 16:49:12 -0700 | [diff] [blame] | 27 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 28 | WORKAROUND_CVE_2017_5715 ?=1 |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 29 | CPU_FLAG_LIST += WORKAROUND_CVE_2017_5715 |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 30 | WORKAROUND_CVE_2018_3639 ?=1 |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 31 | CPU_FLAG_LIST += WORKAROUND_CVE_2018_3639 |
| 32 | CPU_FLAG_LIST += DYNAMIC_WORKAROUND_CVE_2018_3639 |
Bipin Ravi | 8649974 | 2022-01-18 01:59:06 -0600 | [diff] [blame] | 33 | WORKAROUND_CVE_2022_23960 ?=1 |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 34 | CPU_FLAG_LIST += WORKAROUND_CVE_2022_23960 |
Dimitris Papastamos | 446f7f1 | 2017-11-30 14:53:53 +0000 | [diff] [blame] | 35 | |
Javier Almansa Sobrino | 9faad3c | 2020-10-23 13:22:07 +0100 | [diff] [blame] | 36 | # Flags to indicate internal or external Last level cache |
Manish Pandey | 3880a36 | 2020-01-24 11:54:44 +0000 | [diff] [blame] | 37 | # By default internal |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 38 | CPU_FLAG_LIST += NEOVERSE_Nx_EXTERNAL_LLC |
Dimitris Papastamos | ba51d9e | 2018-05-16 11:36:14 +0100 | [diff] [blame] | 39 | |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 40 | # CPU Errata Build flags. |
| 41 | # These should be enabled by the platform if the erratum workaround needs to be |
| 42 | # applied. |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 43 | |
Joel Hutton | 26d1676 | 2019-04-10 12:52:52 +0100 | [diff] [blame] | 44 | # Flag to apply erratum 794073 workaround when disabling mmu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 45 | CPU_FLAG_LIST += ERRATA_A9_794073 |
Joel Hutton | 26d1676 | 2019-04-10 12:52:52 +0100 | [diff] [blame] | 46 | |
Ambroise Vincent | d4a51eb | 2019-03-04 16:56:26 +0000 | [diff] [blame] | 47 | # Flag to apply erratum 816470 workaround during power down. This erratum |
| 48 | # applies only to revision >= r3p0 of the Cortex A15 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 49 | CPU_FLAG_LIST += ERRATA_A15_816470 |
Ambroise Vincent | d4a51eb | 2019-03-04 16:56:26 +0000 | [diff] [blame] | 50 | |
Ambroise Vincent | 68b3812 | 2019-03-05 09:54:21 +0000 | [diff] [blame] | 51 | # Flag to apply erratum 827671 workaround during reset. This erratum applies |
| 52 | # only to revision >= r3p0 of the Cortex A15 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 53 | CPU_FLAG_LIST += ERRATA_A15_827671 |
Ambroise Vincent | 68b3812 | 2019-03-05 09:54:21 +0000 | [diff] [blame] | 54 | |
Ambroise Vincent | 8cf9eef | 2019-02-28 16:23:53 +0000 | [diff] [blame] | 55 | # Flag to apply erratum 852421 workaround during reset. This erratum applies |
| 56 | # only to revision <= r1p2 of the Cortex A17 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 57 | CPU_FLAG_LIST += ERRATA_A17_852421 |
Ambroise Vincent | 8cf9eef | 2019-02-28 16:23:53 +0000 | [diff] [blame] | 58 | |
Ambroise Vincent | fa5c951 | 2019-03-04 13:20:56 +0000 | [diff] [blame] | 59 | # Flag to apply erratum 852423 workaround during reset. This erratum applies |
| 60 | # only to revision <= r1p2 of the Cortex A17 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 61 | CPU_FLAG_LIST += ERRATA_A17_852423 |
Ambroise Vincent | fa5c951 | 2019-03-04 13:20:56 +0000 | [diff] [blame] | 62 | |
Louis Mayencourt | 8a06127 | 2019-04-05 16:25:25 +0100 | [diff] [blame] | 63 | # Flag to apply erratum 855472 workaround during reset. This erratum applies |
| 64 | # only to revision r0p0 of the Cortex A35 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 65 | CPU_FLAG_LIST += ERRATA_A35_855472 |
Louis Mayencourt | 8a06127 | 2019-04-05 16:25:25 +0100 | [diff] [blame] | 66 | |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 67 | # Flag to apply erratum 819472 workaround during reset. This erratum applies |
| 68 | # only to revision <= r0p1 of the Cortex A53 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 69 | CPU_FLAG_LIST += ERRATA_A53_819472 |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 70 | |
| 71 | # Flag to apply erratum 824069 workaround during reset. This erratum applies |
| 72 | # only to revision <= r0p2 of the Cortex A53 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 73 | CPU_FLAG_LIST += ERRATA_A53_824069 |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 74 | |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 75 | # Flag to apply erratum 826319 workaround during reset. This erratum applies |
| 76 | # only to revision <= r0p2 of the Cortex A53 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 77 | CPU_FLAG_LIST += ERRATA_A53_826319 |
developer | 4fceaca | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 78 | |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 79 | # Flag to apply erratum 827319 workaround during reset. This erratum applies |
| 80 | # only to revision <= r0p2 of the Cortex A53 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 81 | CPU_FLAG_LIST += ERRATA_A53_827319 |
Ambroise Vincent | f5fdfbc | 2019-02-21 14:16:24 +0000 | [diff] [blame] | 82 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 83 | # Flag to apply erratum 835769 workaround at compile and link time. This |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 84 | # erratum applies to revision <= r0p4 of the Cortex A53 cpu. Enabling this |
| 85 | # workaround can lead the linker to create "*.stub" sections. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 86 | CPU_FLAG_LIST += ERRATA_A53_835769 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 87 | |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 88 | # Flag to apply erratum 836870 workaround during reset. This erratum applies |
| 89 | # 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] | 90 | # erratum workaround is enabled by default in hardware. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 91 | CPU_FLAG_LIST += ERRATA_A53_836870 |
developer | 4fceaca | 2015-07-29 20:55:31 +0800 | [diff] [blame] | 92 | |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 93 | # Flag to apply erratum 843419 workaround at link time. |
| 94 | # This erratum applies to revision <= r0p4 of the Cortex A53 cpu. Enabling this |
| 95 | # workaround could lead the linker to emit "*.stub" sections which are 4kB |
| 96 | # aligned. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 97 | CPU_FLAG_LIST += ERRATA_A53_843419 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 98 | |
Andre Przywara | 00eefd9 | 2016-10-06 16:54:53 +0100 | [diff] [blame] | 99 | # Flag to apply errata 855873 during reset. This errata applies to all |
| 100 | # revisions of the Cortex A53 CPU, but this firmware workaround only works |
| 101 | # for revisions r0p3 and higher. Earlier revisions are taken care |
| 102 | # of by the rich OS. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 103 | CPU_FLAG_LIST += ERRATA_A53_855873 |
Andre Przywara | 00eefd9 | 2016-10-06 16:54:53 +0100 | [diff] [blame] | 104 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 105 | # Flag to apply erratum 1530924 workaround during reset. This erratum applies |
| 106 | # to all revisions of Cortex A53 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 107 | CPU_FLAG_LIST += ERRATA_A53_1530924 |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 108 | |
Ambroise Vincent | 7927fa0 | 2019-02-21 16:20:43 +0000 | [diff] [blame] | 109 | # Flag to apply erratum 768277 workaround during reset. This erratum applies |
| 110 | # only to revision r0p0 of the Cortex A55 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 111 | CPU_FLAG_LIST += ERRATA_A55_768277 |
Ambroise Vincent | 7927fa0 | 2019-02-21 16:20:43 +0000 | [diff] [blame] | 112 | |
Ambroise Vincent | 6f31960 | 2019-02-21 16:25:37 +0000 | [diff] [blame] | 113 | # Flag to apply erratum 778703 workaround during reset. This erratum applies |
| 114 | # only to revision r0p0 of the Cortex A55 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 115 | CPU_FLAG_LIST += ERRATA_A55_778703 |
Ambroise Vincent | 6f31960 | 2019-02-21 16:25:37 +0000 | [diff] [blame] | 116 | |
Ambroise Vincent | 6a77f05 | 2019-02-21 16:27:34 +0000 | [diff] [blame] | 117 | # Flag to apply erratum 798797 workaround during reset. This erratum applies |
| 118 | # only to revision r0p0 of the Cortex A55 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 119 | CPU_FLAG_LIST += ERRATA_A55_798797 |
Ambroise Vincent | 6a77f05 | 2019-02-21 16:27:34 +0000 | [diff] [blame] | 120 | |
Ambroise Vincent | dd961f7 | 2019-02-21 16:29:16 +0000 | [diff] [blame] | 121 | # Flag to apply erratum 846532 workaround during reset. This erratum applies |
| 122 | # only to revision <= r0p1 of the Cortex A55 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 123 | CPU_FLAG_LIST += ERRATA_A55_846532 |
Ambroise Vincent | dd961f7 | 2019-02-21 16:29:16 +0000 | [diff] [blame] | 124 | |
Ambroise Vincent | a1d6446 | 2019-02-21 16:29:50 +0000 | [diff] [blame] | 125 | # Flag to apply erratum 903758 workaround during reset. This erratum applies |
| 126 | # only to revision <= r0p1 of the Cortex A55 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 127 | CPU_FLAG_LIST += ERRATA_A55_903758 |
Ambroise Vincent | a1d6446 | 2019-02-21 16:29:50 +0000 | [diff] [blame] | 128 | |
Ambroise Vincent | b72fe7a | 2019-05-28 09:52:48 +0100 | [diff] [blame] | 129 | # Flag to apply erratum 1221012 workaround during reset. This erratum applies |
| 130 | # only to revision <= r1p0 of the Cortex A55 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 131 | CPU_FLAG_LIST += ERRATA_A55_1221012 |
Ambroise Vincent | b72fe7a | 2019-05-28 09:52:48 +0100 | [diff] [blame] | 132 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 133 | # Flag to apply erratum 1530923 workaround during reset. This erratum applies |
| 134 | # to all revisions of Cortex A55 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 135 | CPU_FLAG_LIST += ERRATA_A55_1530923 |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 136 | |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 137 | # Flag to apply erratum 806969 workaround during reset. This erratum applies |
| 138 | # only to revision r0p0 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 139 | CPU_FLAG_LIST += ERRATA_A57_806969 |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 140 | |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 141 | # Flag to apply erratum 813419 workaround during reset. This erratum applies |
| 142 | # only to revision r0p0 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 143 | CPU_FLAG_LIST += ERRATA_A57_813419 |
Antonio Nino Diaz | 3f13c35 | 2017-02-24 11:39:22 +0000 | [diff] [blame] | 144 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 145 | # Flag to apply erratum 813420 workaround during reset. This erratum applies |
Sandrine Bailleux | afa8a78 | 2016-04-14 12:59:42 +0100 | [diff] [blame] | 146 | # only to revision r0p0 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 147 | CPU_FLAG_LIST += ERRATA_A57_813420 |
Soby Mathew | 802f865 | 2014-08-14 16:19:29 +0100 | [diff] [blame] | 148 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 149 | # Flag to apply erratum 814670 workaround during reset. This erratum applies |
Ambroise Vincent | 1b0db76 | 2019-02-21 16:35:07 +0000 | [diff] [blame] | 150 | # only to revision r0p0 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 151 | CPU_FLAG_LIST += ERRATA_A57_814670 |
Ambroise Vincent | 1b0db76 | 2019-02-21 16:35:07 +0000 | [diff] [blame] | 152 | |
Ambroise Vincent | aa2c029 | 2019-02-21 16:35:49 +0000 | [diff] [blame] | 153 | # Flag to apply erratum 817169 workaround during power down. This erratum |
| 154 | # applies only to revision <= r0p1 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 155 | CPU_FLAG_LIST += ERRATA_A57_817169 |
Ambroise Vincent | aa2c029 | 2019-02-21 16:35:49 +0000 | [diff] [blame] | 156 | |
Sandrine Bailleux | a7e0c53 | 2016-04-14 13:32:31 +0100 | [diff] [blame] | 157 | # Flag to apply erratum 826974 workaround during reset. This erratum applies |
| 158 | # only to revision <= r1p1 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 159 | CPU_FLAG_LIST += ERRATA_A57_826974 |
Sandrine Bailleux | a7e0c53 | 2016-04-14 13:32:31 +0100 | [diff] [blame] | 160 | |
Sandrine Bailleux | adcbd55 | 2016-04-14 14:24:13 +0100 | [diff] [blame] | 161 | # Flag to apply erratum 826977 workaround during reset. This erratum applies |
| 162 | # only to revision <= r1p1 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 163 | CPU_FLAG_LIST += ERRATA_A57_826977 |
Sandrine Bailleux | adcbd55 | 2016-04-14 14:24:13 +0100 | [diff] [blame] | 164 | |
Sandrine Bailleux | c11116f | 2016-04-14 14:04:48 +0100 | [diff] [blame] | 165 | # Flag to apply erratum 828024 workaround during reset. This erratum applies |
| 166 | # only to revision <= r1p1 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 167 | CPU_FLAG_LIST += ERRATA_A57_828024 |
Sandrine Bailleux | c11116f | 2016-04-14 14:04:48 +0100 | [diff] [blame] | 168 | |
Sandrine Bailleux | 48cbe85 | 2016-04-14 14:18:07 +0100 | [diff] [blame] | 169 | # Flag to apply erratum 829520 workaround during reset. This erratum applies |
| 170 | # only to revision <= r1p2 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 171 | CPU_FLAG_LIST += ERRATA_A57_829520 |
Sandrine Bailleux | 48cbe85 | 2016-04-14 14:18:07 +0100 | [diff] [blame] | 172 | |
Sandrine Bailleux | 143ef1a | 2016-04-21 11:10:52 +0100 | [diff] [blame] | 173 | # Flag to apply erratum 833471 workaround during reset. This erratum applies |
| 174 | # only to revision <= r1p2 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 175 | CPU_FLAG_LIST += ERRATA_A57_833471 |
Sandrine Bailleux | 143ef1a | 2016-04-21 11:10:52 +0100 | [diff] [blame] | 176 | |
Eleanor Bonnici | 0c9bd27 | 2017-08-02 16:35:04 +0100 | [diff] [blame] | 177 | # Flag to apply erratum 855972 workaround during reset. This erratum applies |
| 178 | # only to revision <= r1p3 of the Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 179 | CPU_FLAG_LIST += ERRATA_A57_859972 |
Eleanor Bonnici | 0c9bd27 | 2017-08-02 16:35:04 +0100 | [diff] [blame] | 180 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 181 | # Flag to apply erratum 1319537 workaround during reset. This erratum applies |
| 182 | # to all revisions of Cortex A57 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 183 | CPU_FLAG_LIST += ERRATA_A57_1319537 |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 184 | |
Eleanor Bonnici | c3b4ca1 | 2017-08-02 18:33:41 +0100 | [diff] [blame] | 185 | # Flag to apply erratum 855971 workaround during reset. This erratum applies |
| 186 | # only to revision <= r0p3 of the Cortex A72 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 187 | CPU_FLAG_LIST += ERRATA_A72_859971 |
Eleanor Bonnici | c3b4ca1 | 2017-08-02 18:33:41 +0100 | [diff] [blame] | 188 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 189 | # Flag to apply erratum 1319367 workaround during reset. This erratum applies |
| 190 | # to all revisions of Cortex A72 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 191 | CPU_FLAG_LIST += ERRATA_A72_1319367 |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 192 | |
Louis Mayencourt | d69722c | 2019-02-27 14:24:16 +0000 | [diff] [blame] | 193 | # Flag to apply erratum 852427 workaround during reset. This erratum applies |
| 194 | # only to revision r0p0 of the Cortex A73 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 195 | CPU_FLAG_LIST += ERRATA_A73_852427 |
Louis Mayencourt | d69722c | 2019-02-27 14:24:16 +0000 | [diff] [blame] | 196 | |
Louis Mayencourt | 4405de6 | 2019-02-21 16:38:16 +0000 | [diff] [blame] | 197 | # Flag to apply erratum 855423 workaround during reset. This erratum applies |
| 198 | # only to revision <= r0p1 of the Cortex A73 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 199 | CPU_FLAG_LIST += ERRATA_A73_855423 |
Louis Mayencourt | 4405de6 | 2019-02-21 16:38:16 +0000 | [diff] [blame] | 200 | |
Louis Mayencourt | 78a0aed | 2019-02-20 12:11:41 +0000 | [diff] [blame] | 201 | # Flag to apply erratum 764081 workaround during reset. This erratum applies |
| 202 | # only to revision <= r0p0 of the Cortex A75 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 203 | CPU_FLAG_LIST += ERRATA_A75_764081 |
Louis Mayencourt | 78a0aed | 2019-02-20 12:11:41 +0000 | [diff] [blame] | 204 | |
Louis Mayencourt | 8d86870 | 2019-02-25 14:57:57 +0000 | [diff] [blame] | 205 | # Flag to apply erratum 790748 workaround during reset. This erratum applies |
| 206 | # only to revision <= r0p0 of the Cortex A75 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 207 | CPU_FLAG_LIST += ERRATA_A75_790748 |
Louis Mayencourt | 8d86870 | 2019-02-25 14:57:57 +0000 | [diff] [blame] | 208 | |
Louis Mayencourt | 59fa218 | 2019-02-25 15:17:44 +0000 | [diff] [blame] | 209 | # Flag to apply erratum 1073348 workaround during reset. This erratum applies |
| 210 | # only to revision <= r1p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 211 | CPU_FLAG_LIST += ERRATA_A76_1073348 |
Louis Mayencourt | 59fa218 | 2019-02-25 15:17:44 +0000 | [diff] [blame] | 212 | |
Louis Mayencourt | 0992447 | 2019-02-21 17:35:07 +0000 | [diff] [blame] | 213 | # Flag to apply erratum 1130799 workaround during reset. This erratum applies |
| 214 | # only to revision <= r2p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 215 | CPU_FLAG_LIST += ERRATA_A76_1130799 |
Louis Mayencourt | 0992447 | 2019-02-21 17:35:07 +0000 | [diff] [blame] | 216 | |
Louis Mayencourt | adda9d4 | 2019-02-25 11:37:38 +0000 | [diff] [blame] | 217 | # Flag to apply erratum 1220197 workaround during reset. This erratum applies |
| 218 | # only to revision <= r2p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 219 | CPU_FLAG_LIST += ERRATA_A76_1220197 |
Louis Mayencourt | adda9d4 | 2019-02-25 11:37:38 +0000 | [diff] [blame] | 220 | |
Soby Mathew | 1d3ba1c | 2019-05-01 09:43:18 +0100 | [diff] [blame] | 221 | # Flag to apply erratum 1257314 workaround during reset. This erratum applies |
| 222 | # only to revision <= r3p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 223 | CPU_FLAG_LIST += ERRATA_A76_1257314 |
Soby Mathew | 1d3ba1c | 2019-05-01 09:43:18 +0100 | [diff] [blame] | 224 | |
| 225 | # Flag to apply erratum 1262606 workaround during reset. This erratum applies |
| 226 | # only to revision <= r3p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 227 | CPU_FLAG_LIST += ERRATA_A76_1262606 |
Soby Mathew | 1d3ba1c | 2019-05-01 09:43:18 +0100 | [diff] [blame] | 228 | |
| 229 | # Flag to apply erratum 1262888 workaround during reset. This erratum applies |
| 230 | # only to revision <= r3p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 231 | CPU_FLAG_LIST += ERRATA_A76_1262888 |
Soby Mathew | 1d3ba1c | 2019-05-01 09:43:18 +0100 | [diff] [blame] | 232 | |
| 233 | # Flag to apply erratum 1275112 workaround during reset. This erratum applies |
| 234 | # only to revision <= r3p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 235 | CPU_FLAG_LIST += ERRATA_A76_1275112 |
Soby Mathew | 1d3ba1c | 2019-05-01 09:43:18 +0100 | [diff] [blame] | 236 | |
Soby Mathew | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 237 | # Flag to apply erratum 1286807 workaround during reset. This erratum applies |
| 238 | # only to revision <= r3p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 239 | CPU_FLAG_LIST += ERRATA_A76_1286807 |
Soby Mathew | 16d006b | 2019-05-03 13:17:56 +0100 | [diff] [blame] | 240 | |
johpow01 | 9603f98 | 2020-05-29 14:17:38 -0500 | [diff] [blame] | 241 | # Flag to apply erratum 1791580 workaround during reset. This erratum applies |
| 242 | # only to revision <= r4p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 243 | CPU_FLAG_LIST += ERRATA_A76_1791580 |
johpow01 | 9603f98 | 2020-05-29 14:17:38 -0500 | [diff] [blame] | 244 | |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 245 | # Flag to apply erratum 1165522 workaround during reset. This erratum applies |
| 246 | # to all revisions of Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 247 | CPU_FLAG_LIST += ERRATA_A76_1165522 |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 248 | |
johpow01 | 81365e3 | 2020-09-29 17:19:09 -0500 | [diff] [blame] | 249 | # Flag to apply erratum 1868343 workaround during reset. This erratum applies |
| 250 | # only to revision <= r4p0 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 251 | CPU_FLAG_LIST += ERRATA_A76_1868343 |
johpow01 | 81365e3 | 2020-09-29 17:19:09 -0500 | [diff] [blame] | 252 | |
johpow01 | 3e34e92 | 2020-12-15 19:02:18 -0600 | [diff] [blame] | 253 | # Flag to apply erratum 1946160 workaround during reset. This erratum applies |
| 254 | # only to revisions r3p0 - r4p1 of the Cortex A76 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 255 | CPU_FLAG_LIST += ERRATA_A76_1946160 |
johpow01 | 3e34e92 | 2020-12-15 19:02:18 -0600 | [diff] [blame] | 256 | |
Bipin Ravi | 23e29e4 | 2022-11-02 16:50:03 -0500 | [diff] [blame] | 257 | # Flag to apply erratum 2743102 workaround during powerdown. This erratum |
| 258 | # applies to all revisions <= r4p1 of the Cortex A76 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 259 | CPU_FLAG_LIST += ERRATA_A76_2743102 |
Bipin Ravi | 23e29e4 | 2022-11-02 16:50:03 -0500 | [diff] [blame] | 260 | |
laurenw-arm | 99ad976 | 2020-07-14 14:18:34 -0500 | [diff] [blame] | 261 | # Flag to apply erratum 1508412 workaround during reset. This erratum applies |
| 262 | # only to revision <= r1p0 of the Cortex A77 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 263 | CPU_FLAG_LIST += ERRATA_A77_1508412 |
laurenw-arm | 99ad976 | 2020-07-14 14:18:34 -0500 | [diff] [blame] | 264 | |
johpow01 | a2fa12c | 2020-09-10 13:39:26 -0500 | [diff] [blame] | 265 | # Flag to apply erratum 1925769 workaround during reset. This erratum applies |
| 266 | # only to revision <= r1p1 of the Cortex A77 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 267 | CPU_FLAG_LIST += ERRATA_A77_1925769 |
johpow01 | a2fa12c | 2020-09-10 13:39:26 -0500 | [diff] [blame] | 268 | |
laurenw-arm | f5dbbef | 2021-03-23 13:09:35 -0500 | [diff] [blame] | 269 | # Flag to apply erratum 1946167 workaround during reset. This erratum applies |
| 270 | # only to revision <= r1p1 of the Cortex A77 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 271 | CPU_FLAG_LIST += ERRATA_A77_1946167 |
laurenw-arm | f5dbbef | 2021-03-23 13:09:35 -0500 | [diff] [blame] | 272 | |
johpow01 | eb14610 | 2021-05-03 13:37:13 -0500 | [diff] [blame] | 273 | # Flag to apply erratum 1791578 workaround during reset. This erratum applies |
| 274 | # to revisions r0p0, r1p0, and r1p1, it is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 275 | CPU_FLAG_LIST += ERRATA_A77_1791578 |
johpow01 | eb14610 | 2021-05-03 13:37:13 -0500 | [diff] [blame] | 276 | |
Bipin Ravi | 8e91662 | 2022-06-08 15:27:00 -0500 | [diff] [blame] | 277 | # Flag to apply erratum 2356587 workaround during reset. This erratum applies |
| 278 | # to revisions r0p0, r1p0, and r1p1, it is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 279 | CPU_FLAG_LIST += ERRATA_A77_2356587 |
Bipin Ravi | 8e91662 | 2022-06-08 15:27:00 -0500 | [diff] [blame] | 280 | |
Boyan Karatotev | e5cf16b | 2022-09-27 10:37:54 +0100 | [diff] [blame] | 281 | # Flag to apply erratum 1800714 workaround during reset. This erratum applies |
| 282 | # to revisions <= r1p1 of the Cortex A77 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 283 | CPU_FLAG_LIST += ERRATA_A77_1800714 |
Boyan Karatotev | e5cf16b | 2022-09-27 10:37:54 +0100 | [diff] [blame] | 284 | |
Boyan Karatotev | aaf5d29 | 2022-11-01 11:22:12 +0000 | [diff] [blame] | 285 | # Flag to apply erratum 2743100 workaround during power down. This erratum |
| 286 | # applies to revisions r0p0, r1p0, and r1p1, it is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 287 | CPU_FLAG_LIST += ERRATA_A77_2743100 |
Boyan Karatotev | aaf5d29 | 2022-11-01 11:22:12 +0000 | [diff] [blame] | 288 | |
Madhukar Pappireddy | 4efede7 | 2019-12-18 15:56:27 -0600 | [diff] [blame] | 289 | # Flag to apply erratum 1688305 workaround during reset. This erratum applies |
Jimmy Brisson | 3571fb9 | 2020-06-01 10:18:22 -0500 | [diff] [blame] | 290 | # to revisions r0p0 - r1p0 of the A78 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 291 | CPU_FLAG_LIST += ERRATA_A78_1688305 |
Madhukar Pappireddy | 4efede7 | 2019-12-18 15:56:27 -0600 | [diff] [blame] | 292 | |
johpow01 | 9131eb8 | 2020-10-06 17:55:25 -0500 | [diff] [blame] | 293 | # Flag to apply erratum 1941498 workaround during reset. This erratum applies |
| 294 | # to revisions r0p0, r1p0, and r1p1 of the A78 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 295 | CPU_FLAG_LIST += ERRATA_A78_1941498 |
johpow01 | 9131eb8 | 2020-10-06 17:55:25 -0500 | [diff] [blame] | 296 | |
johpow01 | 85ea43d | 2020-10-07 15:08:01 -0500 | [diff] [blame] | 297 | # Flag to apply erratum 1951500 workaround during reset. This erratum applies |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 298 | # 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] | 299 | # well but there is no workaround for that revision. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 300 | CPU_FLAG_LIST += ERRATA_A78_1951500 |
johpow01 | 85ea43d | 2020-10-07 15:08:01 -0500 | [diff] [blame] | 301 | |
johpow01 | b3e8294 | 2021-04-30 18:08:52 -0500 | [diff] [blame] | 302 | # Flag to apply erratum 1821534 workaround during reset. This erratum applies |
| 303 | # to revisions r0p0 and r1p0 of the A78 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 304 | CPU_FLAG_LIST += ERRATA_A78_1821534 |
johpow01 | b3e8294 | 2021-04-30 18:08:52 -0500 | [diff] [blame] | 305 | |
nayanpatel-arm | 80bf7a5 | 2021-08-11 13:33:00 -0700 | [diff] [blame] | 306 | # Flag to apply erratum 1952683 workaround during reset. This erratum applies |
| 307 | # to revision r0p0 of the A78 cpu and was fixed in the revision r1p0. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 308 | CPU_FLAG_LIST += ERRATA_A78_1952683 |
nayanpatel-arm | 80bf7a5 | 2021-08-11 13:33:00 -0700 | [diff] [blame] | 309 | |
nayanpatel-arm | 39e0865 | 2021-09-28 17:31:50 -0700 | [diff] [blame] | 310 | # Flag to apply erratum 2132060 workaround during reset. This erratum applies |
| 311 | # to revisions r0p0, r1p0, r1p1, and r1p2 of the A78 cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 312 | CPU_FLAG_LIST += ERRATA_A78_2132060 |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 313 | |
| 314 | # Flag to apply erratum 2242635 workaround during reset. This erratum applies |
| 315 | # to revisions r1p0, r1p1, and r1p2 of the A78 cpu and is open. The issue is |
| 316 | # present in r0p0 as well but there is no workaround for that revision. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 317 | CPU_FLAG_LIST += ERRATA_A78_2242635 |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 318 | |
John Powell | 12bc0de | 2022-05-03 15:22:57 -0500 | [diff] [blame] | 319 | # Flag to apply erratum 2376745 workaround during reset. This erratum applies |
| 320 | # to revisions r0p0, r1p0, r1p1, and r1p2 of the A78 cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 321 | CPU_FLAG_LIST += ERRATA_A78_2376745 |
John Powell | 12bc0de | 2022-05-03 15:22:57 -0500 | [diff] [blame] | 322 | |
John Powell | a93b7e5 | 2022-05-03 15:52:11 -0500 | [diff] [blame] | 323 | # Flag to apply erratum 2395406 workaround during reset. This erratum applies |
| 324 | # to revisions r0p0, r1p0, r1p1, and r1p2 of the A78 cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 325 | CPU_FLAG_LIST += ERRATA_A78_2395406 |
John Powell | a93b7e5 | 2022-05-03 15:52:11 -0500 | [diff] [blame] | 326 | |
Sona Mathew | c5b386d | 2023-03-14 16:50:36 -0500 | [diff] [blame] | 327 | # Flag to apply erratum 2712571 workaround for non-arm interconnect ip. This |
| 328 | # erratum applies to revisions r0p0, r1p0, r1p1, and r1p2 of the A78 cpu. |
| 329 | # It is fixed in r1p2. |
| 330 | CPU_FLAG_LIST += ERRATA_A78_2712571 |
| 331 | |
Bipin Ravi | 33100ef | 2023-02-28 14:51:28 -0600 | [diff] [blame] | 332 | # Flag to apply erratum 2742426 workaround during reset. This erratum |
| 333 | # applies to revisions r0p0, r1p0, r1p1 and r1p2 of the A78 cpu. It is still |
| 334 | # open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 335 | CPU_FLAG_LIST += ERRATA_A78_2742426 |
Bipin Ravi | 33100ef | 2023-02-28 14:51:28 -0600 | [diff] [blame] | 336 | |
Bipin Ravi | 8f78e0d | 2022-12-15 14:48:21 -0600 | [diff] [blame] | 337 | # Flag to apply erratum 2772019 workaround during powerdown. This erratum |
| 338 | # applies to revisions r0p0, r1p0, r1p1 and r1p2 of the A78 cpu. It is still |
| 339 | # open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 340 | CPU_FLAG_LIST += ERRATA_A78_2772019 |
Bipin Ravi | 8f78e0d | 2022-12-15 14:48:21 -0600 | [diff] [blame] | 341 | |
Sona Mathew | f13c1a9 | 2023-01-11 12:55:30 -0600 | [diff] [blame] | 342 | # Flag to apply erratum 2779479 workaround during reset. This erratum applies |
| 343 | # to revision r0p0, r1p0, r1p1 and r1p2 of the A78 cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 344 | CPU_FLAG_LIST += ERRATA_A78_2779479 |
Sona Mathew | f13c1a9 | 2023-01-11 12:55:30 -0600 | [diff] [blame] | 345 | |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 346 | # Flag to apply erratum 1941500 workaround during reset. This erratum applies |
| 347 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 348 | CPU_FLAG_LIST += ERRATA_A78_AE_1941500 |
johpow01 | 45c1724 | 2021-09-02 17:53:30 -0500 | [diff] [blame] | 349 | |
| 350 | # Flag to apply erratum 1951502 workaround during reset. This erratum applies |
| 351 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 352 | CPU_FLAG_LIST += ERRATA_A78_AE_1951502 |
nayanpatel-arm | 39e0865 | 2021-09-28 17:31:50 -0700 | [diff] [blame] | 353 | |
Varun Wadekar | 9030a6c | 2022-03-09 22:04:00 +0000 | [diff] [blame] | 354 | # Flag to apply erratum 2376748 workaround during reset. This erratum applies |
Sona Mathew | 2089775 | 2023-10-10 16:48:57 -0500 | [diff] [blame] | 355 | # to revisions r0p0, r0p1 and r0p2 of the A78 AE cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 356 | CPU_FLAG_LIST += ERRATA_A78_AE_2376748 |
Varun Wadekar | 9030a6c | 2022-03-09 22:04:00 +0000 | [diff] [blame] | 357 | |
Varun Wadekar | ac6bf2e | 2022-03-09 22:20:32 +0000 | [diff] [blame] | 358 | # Flag to apply erratum 2395408 workaround during reset. This erratum applies |
| 359 | # to revisions r0p0 and r0p1 of the A78 AE cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 360 | CPU_FLAG_LIST += ERRATA_A78_AE_2395408 |
Varun Wadekar | ac6bf2e | 2022-03-09 22:20:32 +0000 | [diff] [blame] | 361 | |
Bipin Ravi | bf205fc | 2023-03-14 10:04:23 -0500 | [diff] [blame] | 362 | # Flag to apply erratum 1827430 workaround during reset. This erratum applies |
| 363 | # to revision r0p0 of the A78C cpu. It is fixed in r0p1. |
| 364 | CPU_FLAG_LIST += ERRATA_A78C_1827430 |
| 365 | |
Bipin Ravi | e49c704 | 2023-03-14 11:03:24 -0500 | [diff] [blame] | 366 | # Flag to apply erratum 1827440 workaround during reset. This erratum applies |
| 367 | # to revision r0p0 of the A78C cpu. It is fixed in r0p1. |
| 368 | CPU_FLAG_LIST += ERRATA_A78C_1827440 |
| 369 | |
Sona Mathew | c5b386d | 2023-03-14 16:50:36 -0500 | [diff] [blame] | 370 | # Flag to apply erratum 2712574 workaround for non-arm interconnect ip. This |
| 371 | # erratum applies to revisions r0p0, r0p1 and r0p2 of the A78 AE cpu. |
| 372 | # It is still open. |
| 373 | CPU_FLAG_LIST += ERRATA_A78_AE_2712574 |
| 374 | |
laurenw-arm | 4dc1887 | 2022-07-12 10:43:52 -0500 | [diff] [blame] | 375 | # Flag to apply erratum 2132064 workaround during reset. This erratum applies |
| 376 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 377 | CPU_FLAG_LIST += ERRATA_A78C_2132064 |
laurenw-arm | 4dc1887 | 2022-07-12 10:43:52 -0500 | [diff] [blame] | 378 | |
Bipin Ravi | 9c36e12 | 2022-07-15 17:20:16 -0500 | [diff] [blame] | 379 | # Flag to apply erratum 2242638 workaround during reset. This erratum applies |
| 380 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 381 | CPU_FLAG_LIST += ERRATA_A78C_2242638 |
Bipin Ravi | 9c36e12 | 2022-07-15 17:20:16 -0500 | [diff] [blame] | 382 | |
Akram Ahmad | fbc1edb | 2022-09-06 11:23:25 +0100 | [diff] [blame] | 383 | # Flag to apply erratum 2376749 workaround during reset. This erratum applies |
| 384 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 385 | CPU_FLAG_LIST += ERRATA_A78C_2376749 |
Akram Ahmad | fbc1edb | 2022-09-06 11:23:25 +0100 | [diff] [blame] | 386 | |
Akram Ahmad | dbff7cf | 2022-07-19 14:38:46 +0100 | [diff] [blame] | 387 | # Flag to apply erratum 2395411 workaround during reset. This erratum applies |
| 388 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 389 | CPU_FLAG_LIST += ERRATA_A78C_2395411 |
Akram Ahmad | dbff7cf | 2022-07-19 14:38:46 +0100 | [diff] [blame] | 390 | |
Sona Mathew | c5b386d | 2023-03-14 16:50:36 -0500 | [diff] [blame] | 391 | # Flag to apply erratum 2712575 workaround for non-arm interconnect ip. This |
| 392 | # erratum applies to revisions r0p1 and r0p2 of the A78C cpu. |
| 393 | # It is still open. |
| 394 | CPU_FLAG_LIST += ERRATA_A78C_2712575 |
| 395 | |
Sona Mathew | dfde504 | 2023-11-14 14:00:48 -0600 | [diff] [blame] | 396 | # Flag to apply erratum 2743232 workaround during reset. This erratum applies |
| 397 | # to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
| 398 | CPU_FLAG_LIST += ERRATA_A78C_2743232 |
| 399 | |
Bipin Ravi | e0b52cc | 2023-01-18 11:03:21 -0600 | [diff] [blame] | 400 | # Flag to apply erratum 2772121 workaround during powerdown. This erratum |
| 401 | # applies to revisions r0p0, r0p1 and r0p2 of the A78C cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 402 | CPU_FLAG_LIST += ERRATA_A78C_2772121 |
Bipin Ravi | e0b52cc | 2023-01-18 11:03:21 -0600 | [diff] [blame] | 403 | |
Bipin Ravi | db09108 | 2023-02-28 16:21:51 -0600 | [diff] [blame] | 404 | # Flag to apply erratum 2779484 workaround during reset. This erratum |
| 405 | # applies to revisions r0p1 and r0p2 of the A78C cpu. It is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 406 | CPU_FLAG_LIST += ERRATA_A78C_2779484 |
Bipin Ravi | db09108 | 2023-02-28 16:21:51 -0600 | [diff] [blame] | 407 | |
Okash Khawaja | baee390 | 2022-04-21 12:20:21 +0100 | [diff] [blame] | 408 | # Flag to apply erratum 1821534 workaround during reset. This erratum applies |
| 409 | # to revisions r0p0 - r1p0 of the X1 cpu and fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 410 | CPU_FLAG_LIST += ERRATA_X1_1821534 |
Okash Khawaja | baee390 | 2022-04-21 12:20:21 +0100 | [diff] [blame] | 411 | |
| 412 | # Flag to apply erratum 1688305 workaround during reset. This erratum applies |
| 413 | # to revisions r0p0 - r1p0 of the X1 cpu and fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 414 | CPU_FLAG_LIST += ERRATA_X1_1688305 |
Okash Khawaja | baee390 | 2022-04-21 12:20:21 +0100 | [diff] [blame] | 415 | |
| 416 | # Flag to apply erratum 1827429 workaround during reset. This erratum applies |
| 417 | # to revisions r0p0 - r1p0 of the X1 cpu and fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 418 | CPU_FLAG_LIST += ERRATA_X1_1827429 |
Okash Khawaja | baee390 | 2022-04-21 12:20:21 +0100 | [diff] [blame] | 419 | |
Dimitris Papastamos | 7ca21db | 2018-03-26 16:46:01 +0100 | [diff] [blame] | 420 | # Flag to apply T32 CLREX workaround during reset. This erratum applies |
John Tsichritzis | 56369c1 | 2019-02-19 13:49:06 +0000 | [diff] [blame] | 421 | # only to r0p0 and r1p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 422 | CPU_FLAG_LIST += ERRATA_N1_1043202 |
Dimitris Papastamos | 7ca21db | 2018-03-26 16:46:01 +0100 | [diff] [blame] | 423 | |
lauwal01 | bd555f4 | 2019-06-24 11:23:50 -0500 | [diff] [blame] | 424 | # Flag to apply erratum 1073348 workaround during reset. This erratum applies |
| 425 | # only to revision r0p0 and r1p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 426 | CPU_FLAG_LIST += ERRATA_N1_1073348 |
lauwal01 | bd555f4 | 2019-06-24 11:23:50 -0500 | [diff] [blame] | 427 | |
lauwal01 | 363ee3c | 2019-06-24 11:28:34 -0500 | [diff] [blame] | 428 | # Flag to apply erratum 1130799 workaround during reset. This erratum applies |
| 429 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 430 | CPU_FLAG_LIST += ERRATA_N1_1130799 |
lauwal01 | 363ee3c | 2019-06-24 11:28:34 -0500 | [diff] [blame] | 431 | |
lauwal01 | f2adb13 | 2019-06-24 11:32:40 -0500 | [diff] [blame] | 432 | # Flag to apply erratum 1165347 workaround during reset. This erratum applies |
| 433 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 434 | CPU_FLAG_LIST += ERRATA_N1_1165347 |
lauwal01 | f2adb13 | 2019-06-24 11:32:40 -0500 | [diff] [blame] | 435 | |
lauwal01 | e159044 | 2019-06-24 11:35:37 -0500 | [diff] [blame] | 436 | # Flag to apply erratum 1207823 workaround during reset. This erratum applies |
| 437 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 438 | CPU_FLAG_LIST += ERRATA_N1_1207823 |
lauwal01 | e159044 | 2019-06-24 11:35:37 -0500 | [diff] [blame] | 439 | |
lauwal01 | 197f14c | 2019-06-24 11:38:53 -0500 | [diff] [blame] | 440 | # Flag to apply erratum 1220197 workaround during reset. This erratum applies |
| 441 | # only to revision <= r2p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 442 | CPU_FLAG_LIST += ERRATA_N1_1220197 |
lauwal01 | 197f14c | 2019-06-24 11:38:53 -0500 | [diff] [blame] | 443 | |
lauwal01 | 07c2a23 | 2019-06-24 11:42:02 -0500 | [diff] [blame] | 444 | # Flag to apply erratum 1257314 workaround during reset. This erratum applies |
| 445 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 446 | CPU_FLAG_LIST += ERRATA_N1_1257314 |
lauwal01 | 07c2a23 | 2019-06-24 11:42:02 -0500 | [diff] [blame] | 447 | |
lauwal01 | 42771af | 2019-06-24 11:44:58 -0500 | [diff] [blame] | 448 | # Flag to apply erratum 1262606 workaround during reset. This erratum applies |
| 449 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 450 | CPU_FLAG_LIST += ERRATA_N1_1262606 |
lauwal01 | 42771af | 2019-06-24 11:44:58 -0500 | [diff] [blame] | 451 | |
lauwal01 | 00396bf | 2019-06-24 11:47:30 -0500 | [diff] [blame] | 452 | # Flag to apply erratum 1262888 workaround during reset. This erratum applies |
| 453 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 454 | CPU_FLAG_LIST += ERRATA_N1_1262888 |
lauwal01 | 00396bf | 2019-06-24 11:47:30 -0500 | [diff] [blame] | 455 | |
lauwal01 | 644b6ed | 2019-06-24 11:49:01 -0500 | [diff] [blame] | 456 | # Flag to apply erratum 1275112 workaround during reset. This erratum applies |
| 457 | # only to revision <= r3p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 458 | CPU_FLAG_LIST += ERRATA_N1_1275112 |
lauwal01 | 644b6ed | 2019-06-24 11:49:01 -0500 | [diff] [blame] | 459 | |
Andre Przywara | b934740 | 2019-05-20 14:57:06 +0100 | [diff] [blame] | 460 | # Flag to apply erratum 1315703 workaround during reset. This erratum applies |
| 461 | # to revisions before r3p1 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 462 | CPU_FLAG_LIST += ERRATA_N1_1315703 |
Andre Przywara | b934740 | 2019-05-20 14:57:06 +0100 | [diff] [blame] | 463 | |
laurenw-arm | 94accd3 | 2019-08-20 15:51:24 -0500 | [diff] [blame] | 464 | # Flag to apply erratum 1542419 workaround during reset. This erratum applies |
| 465 | # to revisions r3p0 - r4p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 466 | CPU_FLAG_LIST += ERRATA_N1_1542419 |
laurenw-arm | 94accd3 | 2019-08-20 15:51:24 -0500 | [diff] [blame] | 467 | |
johpow01 | e2428fd | 2020-08-05 12:27:12 -0500 | [diff] [blame] | 468 | # Flag to apply erratum 1868343 workaround during reset. This erratum applies |
| 469 | # to revision <= r4p0 of the Neoverse N1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 470 | CPU_FLAG_LIST += ERRATA_N1_1868343 |
johpow01 | e2428fd | 2020-08-05 12:27:12 -0500 | [diff] [blame] | 471 | |
johpow01 | f1a84f5 | 2020-10-07 14:33:15 -0500 | [diff] [blame] | 472 | # Flag to apply erratum 1946160 workaround during reset. This erratum applies |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 473 | # 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] | 474 | # exists in revisions r0p0, r1p0, and r2p0 as well but there is no workaround. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 475 | CPU_FLAG_LIST += ERRATA_N1_1946160 |
johpow01 | f1a84f5 | 2020-10-07 14:33:15 -0500 | [diff] [blame] | 476 | |
Bipin Ravi | 9edf249 | 2022-11-02 16:12:01 -0500 | [diff] [blame] | 477 | # Flag to apply erratum 2743102 workaround during powerdown. This erratum |
| 478 | # applies to all revisions <= r4p1 of the Neoverse N1 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 479 | CPU_FLAG_LIST += ERRATA_N1_2743102 |
Bipin Ravi | 9edf249 | 2022-11-02 16:12:01 -0500 | [diff] [blame] | 480 | |
Juan Pablo Conde | 31c9337 | 2022-02-28 14:14:44 -0500 | [diff] [blame] | 481 | # Flag to apply erratum 1618635 workaround during reset. This erratum applies |
| 482 | # to revision r0p0 of the Neoverse V1 cpu and was fixed in the revision r1p0. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 483 | CPU_FLAG_LIST += ERRATA_V1_1618635 |
Juan Pablo Conde | 31c9337 | 2022-02-28 14:14:44 -0500 | [diff] [blame] | 484 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 485 | # Flag to apply erratum 1774420 workaround during reset. This erratum applies |
laurenw-arm | 3c86d83 | 2021-08-02 13:22:32 -0500 | [diff] [blame] | 486 | # to revisions r0p0 and r1p0 of the Neoverse V1 core, and was fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 487 | CPU_FLAG_LIST += ERRATA_V1_1774420 |
laurenw-arm | 3c86d83 | 2021-08-02 13:22:32 -0500 | [diff] [blame] | 488 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 489 | # Flag to apply erratum 1791573 workaround during reset. This erratum applies |
johpow01 | c73b03c | 2021-05-03 15:33:39 -0500 | [diff] [blame] | 490 | # to revisions r0p0 and r1p0 of the Neoverse V1 core, and was fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 491 | CPU_FLAG_LIST += ERRATA_V1_1791573 |
johpow01 | c73b03c | 2021-05-03 15:33:39 -0500 | [diff] [blame] | 492 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 493 | # Flag to apply erratum 1852267 workaround during reset. This erratum applies |
laurenw-arm | b1923e9 | 2021-08-02 14:40:08 -0500 | [diff] [blame] | 494 | # to revisions r0p0 and r1p0 of the Neoverse V1 core, and was fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 495 | CPU_FLAG_LIST += ERRATA_V1_1852267 |
laurenw-arm | b1923e9 | 2021-08-02 14:40:08 -0500 | [diff] [blame] | 496 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 497 | # Flag to apply erratum 1925756 workaround during reset. This needs to be |
laurenw-arm | 6b56f96 | 2021-08-02 15:00:15 -0500 | [diff] [blame] | 498 | # enabled for r0p0, r1p0, and r1p1 of the Neoverse V1 core, it is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 499 | CPU_FLAG_LIST += ERRATA_V1_1925756 |
laurenw-arm | 6b56f96 | 2021-08-02 15:00:15 -0500 | [diff] [blame] | 500 | |
johpow01 | 07acb4f | 2020-10-07 16:38:37 -0500 | [diff] [blame] | 501 | # Flag to apply erratum 1940577 workaround during reset. This erratum applies |
| 502 | # to revisions r1p0 and r1p1 of the Neoverse V1 cpu. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 503 | CPU_FLAG_LIST += ERRATA_V1_1940577 |
johpow01 | 07acb4f | 2020-10-07 16:38:37 -0500 | [diff] [blame] | 504 | |
johpow01 | 97db675 | 2021-08-02 18:59:08 -0500 | [diff] [blame] | 505 | # Flag to apply erratum 1966096 workaround during reset. This erratum applies |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 506 | # 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] | 507 | # exists in r0p0 as well but there is no workaround for that revision. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 508 | CPU_FLAG_LIST += ERRATA_V1_1966096 |
johpow01 | 97db675 | 2021-08-02 18:59:08 -0500 | [diff] [blame] | 509 | |
johpow01 | ad1ca34 | 2021-08-03 14:35:20 -0500 | [diff] [blame] | 510 | # Flag to apply erratum 2139242 workaround during reset. This erratum applies |
| 511 | # to revisions r0p0, r1p0, and r1p1 of the Neoverse V1 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 512 | CPU_FLAG_LIST += ERRATA_V1_2139242 |
nayanpatel-arm | fc26ffe | 2021-09-28 13:41:03 -0700 | [diff] [blame] | 513 | |
| 514 | # Flag to apply erratum 2108267 workaround during reset. This erratum applies |
| 515 | # to revisions r0p0, r1p0, and r1p1 of the Neoverse V1 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 516 | CPU_FLAG_LIST += ERRATA_V1_2108267 |
johpow01 | ad1ca34 | 2021-08-03 14:35:20 -0500 | [diff] [blame] | 517 | |
johpow01 | 4de29cb | 2021-09-02 18:29:17 -0500 | [diff] [blame] | 518 | # Flag to apply erratum 2216392 workaround during reset. This erratum applies |
| 519 | # to revisions r1p0 and r1p1 of the Neoverse V1 cpu and is still open. This |
| 520 | # issue exists in r0p0 as well but there is no workaround for that revision. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 521 | CPU_FLAG_LIST += ERRATA_V1_2216392 |
johpow01 | 4de29cb | 2021-09-02 18:29:17 -0500 | [diff] [blame] | 522 | |
Bipin Ravi | 971938f | 2022-06-08 16:28:46 -0500 | [diff] [blame] | 523 | # Flag to apply erratum 2294912 workaround during reset. This erratum applies |
Sona Mathew | eb01117 | 2023-10-16 15:12:30 -0500 | [diff] [blame] | 524 | # to revisions r0p0, r1p0, and r1p1 and r1p2 of the Neoverse V1 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 525 | CPU_FLAG_LIST += ERRATA_V1_2294912 |
Bipin Ravi | 971938f | 2022-06-08 16:28:46 -0500 | [diff] [blame] | 526 | |
Sona Mathew | c54b3ef | 2023-11-07 13:46:15 -0600 | [diff] [blame] | 527 | # Flag to apply erratum 2348377 workaround during reset. This erratum applies |
| 528 | # to revisions r0p0, r1p0 and r1p1 of the Neoverse V1 cpu and is fixed in r1p2. |
| 529 | CPU_FLAG_LIST += ERRATA_V1_2348377 |
| 530 | |
Bipin Ravi | b4cb31f | 2022-06-14 17:09:23 -0500 | [diff] [blame] | 531 | # Flag to apply erratum 2372203 workaround during reset. This erratum applies |
| 532 | # to revisions r0p0, r1p0 and r1p1 of the Neoverse V1 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 533 | CPU_FLAG_LIST += ERRATA_V1_2372203 |
Bipin Ravi | b4cb31f | 2022-06-14 17:09:23 -0500 | [diff] [blame] | 534 | |
Sona Mathew | c5b386d | 2023-03-14 16:50:36 -0500 | [diff] [blame] | 535 | # Flag to apply erratum 2701953 workaround to non-arm interconnect ip. This |
| 536 | # erratum applies to revisions r0p0, r1p0, r1p1 of the Neoverse V1 cpu, |
| 537 | # it is fixed in r1p2. |
| 538 | CPU_FLAG_LIST += ERRATA_V1_2701953 |
| 539 | |
Bipin Ravi | fe4b0c4 | 2022-12-15 11:57:53 -0600 | [diff] [blame] | 540 | # Flag to apply erratum 2743093 workaround during powerdown. This erratum |
| 541 | # applies to revisions r0p0, r1p0, r1p1 and r1p2 of the Neoverse V1 cpu and is |
| 542 | # still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 543 | CPU_FLAG_LIST += ERRATA_V1_2743093 |
Bipin Ravi | fe4b0c4 | 2022-12-15 11:57:53 -0600 | [diff] [blame] | 544 | |
Sona Mathew | 2ef5db7 | 2023-03-02 15:07:55 -0600 | [diff] [blame] | 545 | # Flag to apply erratum 2743233 workaround during powerdown. This erratum |
| 546 | # applies to revisions r0p0, r1p0, r1p1 and r1p2 of the Neoverse V1 cpu and is |
| 547 | # still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 548 | CPU_FLAG_LIST += ERRATA_V1_2743233 |
Sona Mathew | 2ef5db7 | 2023-03-02 15:07:55 -0600 | [diff] [blame] | 549 | |
Sona Mathew | fe405d0 | 2023-01-11 17:04:24 -0600 | [diff] [blame] | 550 | # Flag to apply erratum 2779461 workaround during powerdown. This erratum |
| 551 | # applies to revisions r0p0, r1p0, r1p1 and r1p2 of the Neoverse V1 cpu and is |
| 552 | # still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 553 | CPU_FLAG_LIST += ERRATA_V1_2779461 |
Sona Mathew | fe405d0 | 2023-01-11 17:04:24 -0600 | [diff] [blame] | 554 | |
nayanpatel-arm | e55d325 | 2021-08-06 16:39:48 -0700 | [diff] [blame] | 555 | # Flag to apply erratum 1987031 workaround during reset. This erratum applies |
| 556 | # to revisions r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 557 | CPU_FLAG_LIST += ERRATA_A710_1987031 |
nayanpatel-arm | e55d325 | 2021-08-06 16:39:48 -0700 | [diff] [blame] | 558 | |
nayanpatel-arm | 7597d08 | 2021-08-25 17:35:15 -0700 | [diff] [blame] | 559 | # Flag to apply erratum 2081180 workaround during reset. This erratum applies |
| 560 | # to revisions r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 561 | CPU_FLAG_LIST += ERRATA_A710_2081180 |
nayanpatel-arm | 7597d08 | 2021-08-25 17:35:15 -0700 | [diff] [blame] | 562 | |
nayanpatel-arm | 0b338b4 | 2021-09-16 15:27:53 -0700 | [diff] [blame] | 563 | # Flag to apply erratum 2083908 workaround during reset. This erratum applies |
| 564 | # to revision r2p0 of the Cortex-A710 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 565 | CPU_FLAG_LIST += ERRATA_A710_2083908 |
nayanpatel-arm | 0b338b4 | 2021-09-16 15:27:53 -0700 | [diff] [blame] | 566 | |
nayanpatel-arm | f2dce0e | 2021-09-22 12:35:03 -0700 | [diff] [blame] | 567 | # Flag to apply erratum 2058056 workaround during reset. This erratum applies |
Sona Mathew | 6d691c5 | 2023-10-10 13:51:45 -0500 | [diff] [blame] | 568 | # to revisions r0p0, r1p0, r2p0 and r2p1 of the Cortex-A710 cpu and is still |
| 569 | # open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 570 | CPU_FLAG_LIST += ERRATA_A710_2058056 |
nayanpatel-arm | f2dce0e | 2021-09-22 12:35:03 -0700 | [diff] [blame] | 571 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 572 | # Flag to apply erratum 2055002 workaround during reset. This erratum applies |
| 573 | # to revision r1p0, r2p0 of the Cortex-A710 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 574 | CPU_FLAG_LIST += ERRATA_A710_2055002 |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 575 | |
| 576 | # Flag to apply erratum 2017096 workaround during reset. This erratum applies |
| 577 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 578 | CPU_FLAG_LIST += ERRATA_A710_2017096 |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 579 | |
| 580 | # Flag to apply erratum 2267065 workaround during reset. This erratum applies |
| 581 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 582 | CPU_FLAG_LIST += ERRATA_A710_2267065 |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 583 | |
| 584 | # Flag to apply erratum 2136059 workaround during reset. This erratum applies |
| 585 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 586 | CPU_FLAG_LIST += ERRATA_A710_2136059 |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 587 | |
Akram Ahmad | 1714c1d | 2022-07-21 15:25:08 +0100 | [diff] [blame] | 588 | # Flag to apply erratum 2147715 workaround during reset. This erratum applies |
| 589 | # to revision r2p0 of the Cortex-A710 CPU and is fixed in revision r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 590 | CPU_FLAG_LIST += ERRATA_A710_2147715 |
Akram Ahmad | 1714c1d | 2022-07-21 15:25:08 +0100 | [diff] [blame] | 591 | |
Jayanth Dodderi Chidanand | de4f589 | 2022-09-01 22:09:54 +0100 | [diff] [blame] | 592 | # Flag to apply erratum 2216384 workaround during reset. This erratum applies |
| 593 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 594 | CPU_FLAG_LIST += ERRATA_A710_2216384 |
Jayanth Dodderi Chidanand | de4f589 | 2022-09-01 22:09:54 +0100 | [diff] [blame] | 595 | |
johpow01 | 7249fd0 | 2022-02-28 18:34:04 -0600 | [diff] [blame] | 596 | # Flag to apply erratum 2282622 workaround during reset. This erratum applies |
Bipin Ravi | 380c198 | 2022-12-22 13:31:46 -0600 | [diff] [blame] | 597 | # to revision r0p0, r1p0, r2p0 and r2p1 of the Cortex-A710 cpu and is still |
| 598 | # open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 599 | CPU_FLAG_LIST += ERRATA_A710_2282622 |
johpow01 | 7249fd0 | 2022-02-28 18:34:04 -0600 | [diff] [blame] | 600 | |
Boyan Karatotev | f8de535 | 2022-10-03 14:21:28 +0100 | [diff] [blame] | 601 | # Flag to apply erratum 2291219 workaround during reset. This erratum applies |
| 602 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 603 | CPU_FLAG_LIST += ERRATA_A710_2291219 |
Boyan Karatotev | f8de535 | 2022-10-03 14:21:28 +0100 | [diff] [blame] | 604 | |
johpow01 | 7d52a8f | 2022-03-09 16:23:04 -0600 | [diff] [blame] | 605 | # Flag to apply erratum 2008768 workaround during reset. This erratum applies |
| 606 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 607 | CPU_FLAG_LIST += ERRATA_A710_2008768 |
johpow01 | 7d52a8f | 2022-03-09 16:23:04 -0600 | [diff] [blame] | 608 | |
Bipin Ravi | 77eab29 | 2022-07-12 15:53:21 -0500 | [diff] [blame] | 609 | # Flag to apply erratum 2371105 workaround during reset. This erratum applies |
| 610 | # to revision r0p0, r1p0 and r2p0 of the Cortex-A710 cpu and is fixed in r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 611 | CPU_FLAG_LIST += ERRATA_A710_2371105 |
Bipin Ravi | 77eab29 | 2022-07-12 15:53:21 -0500 | [diff] [blame] | 612 | |
Sona Mathew | c5b386d | 2023-03-14 16:50:36 -0500 | [diff] [blame] | 613 | # Flag to apply erratum 2701952 workaround for non-arm interconnect ip. This |
| 614 | # erratum applies to revision r0p0, r1p0, r2p0, r2p1 of the Cortex-A710 cpu |
| 615 | # and is still open. |
| 616 | CPU_FLAG_LIST += ERRATA_A710_2701952 |
| 617 | |
Bipin Ravi | bfa1468 | 2023-10-17 07:55:55 -0500 | [diff] [blame] | 618 | # Flag to apply erratum 2742423 workaround during reset. This erratum applies |
| 619 | # to revision r0p0, r1p0, r2p0 and r2p1 of the Cortex-A710 cpu and is still |
| 620 | # open. |
| 621 | CPU_FLAG_LIST += ERRATA_A710_2742423 |
| 622 | |
Bipin Ravi | ef9a155 | 2022-12-07 13:32:35 -0600 | [diff] [blame] | 623 | # Flag to apply erratum 2768515 workaround during power down. This erratum |
| 624 | # applies to revision r0p0, r1p0, r2p0 and r2p1 of the Cortex-A710 cpu and is |
| 625 | # still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 626 | CPU_FLAG_LIST += ERRATA_A710_2768515 |
Bipin Ravi | ef9a155 | 2022-12-07 13:32:35 -0600 | [diff] [blame] | 627 | |
Sona Mathew | e2fea18 | 2023-12-08 20:52:17 -0600 | [diff] [blame] | 628 | # Flag to apply erratum 2778471 workaround during reset. This erratum applies |
| 629 | # to revisions r0p0, r1p0, r2p0, r2p1 of the Cortex-A710 cpu and is still |
| 630 | # open. |
| 631 | CPU_FLAG_LIST += ERRATA_A710_2778471 |
| 632 | |
Bipin Ravi | cc744bf | 2022-12-07 17:01:26 -0600 | [diff] [blame] | 633 | # Flag to apply erratum 2002655 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 634 | # to revisions r0p0 of the Neoverse-N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 635 | CPU_FLAG_LIST += ERRATA_N2_2002655 |
Bipin Ravi | cc744bf | 2022-12-07 17:01:26 -0600 | [diff] [blame] | 636 | |
Bipin Ravi | dd5bc63 | 2023-08-29 13:59:09 -0500 | [diff] [blame] | 637 | # Flag to apply erratum 2009478 workaround during powerdown. This erratum |
| 638 | # applies to revision r0p0 of the Neoverse N2 cpu, it is fixed in r0p1. |
| 639 | CPU_FLAG_LIST += ERRATA_N2_2009478 |
| 640 | |
Bipin Ravi | eb35e85 | 2021-03-30 16:08:32 -0500 | [diff] [blame] | 641 | # Flag to apply erratum 2067956 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 642 | # to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 643 | CPU_FLAG_LIST += ERRATA_N2_2067956 |
Bipin Ravi | eb35e85 | 2021-03-30 16:08:32 -0500 | [diff] [blame] | 644 | |
Bipin Ravi | 7f56547 | 2021-03-31 10:10:27 -0500 | [diff] [blame] | 645 | # Flag to apply erratum 2025414 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 646 | # to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 647 | CPU_FLAG_LIST += ERRATA_N2_2025414 |
Bipin Ravi | 7f56547 | 2021-03-31 10:10:27 -0500 | [diff] [blame] | 648 | |
Bipin Ravi | 7e03069 | 2021-08-30 13:02:51 -0500 | [diff] [blame] | 649 | # Flag to apply erratum 2189731 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 650 | # to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 651 | CPU_FLAG_LIST += ERRATA_N2_2189731 |
Bipin Ravi | 7e03069 | 2021-08-30 13:02:51 -0500 | [diff] [blame] | 652 | |
Bipin Ravi | 0ba631c | 2021-09-01 01:36:43 -0500 | [diff] [blame] | 653 | # Flag to apply erratum 2138956 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 654 | # to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 655 | CPU_FLAG_LIST += ERRATA_N2_2138956 |
Bipin Ravi | 0ba631c | 2021-09-01 01:36:43 -0500 | [diff] [blame] | 656 | |
nayanpatel-arm | d4c5f9c | 2021-09-28 09:46:45 -0700 | [diff] [blame] | 657 | # Flag to apply erratum 2138953 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 658 | # to revision r0p0, r0p1, r0p2, r0p3 of the Neoverse N2 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 659 | CPU_FLAG_LIST += ERRATA_N2_2138953 |
nayanpatel-arm | d4c5f9c | 2021-09-28 09:46:45 -0700 | [diff] [blame] | 660 | |
nayanpatel-arm | 2f15399 | 2021-10-06 15:31:24 -0700 | [diff] [blame] | 661 | # Flag to apply erratum 2242415 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 662 | # to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 663 | CPU_FLAG_LIST += ERRATA_N2_2242415 |
nayanpatel-arm | 2f15399 | 2021-10-06 15:31:24 -0700 | [diff] [blame] | 664 | |
nayanpatel-arm | 8e1aa01 | 2021-10-20 18:28:58 -0700 | [diff] [blame] | 665 | # Flag to apply erratum 2138958 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 666 | # to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 667 | CPU_FLAG_LIST += ERRATA_N2_2138958 |
nayanpatel-arm | 8e1aa01 | 2021-10-20 18:28:58 -0700 | [diff] [blame] | 668 | |
nayanpatel-arm | fed9813 | 2021-10-07 17:59:33 -0700 | [diff] [blame] | 669 | # Flag to apply erratum 2242400 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 670 | # to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 671 | CPU_FLAG_LIST += ERRATA_N2_2242400 |
nayanpatel-arm | fed9813 | 2021-10-07 17:59:33 -0700 | [diff] [blame] | 672 | |
nayanpatel-arm | 45b9f6f | 2021-10-20 17:30:46 -0700 | [diff] [blame] | 673 | # Flag to apply erratum 2280757 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 674 | # to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 675 | CPU_FLAG_LIST += ERRATA_N2_2280757 |
nayanpatel-arm | 45b9f6f | 2021-10-20 17:30:46 -0700 | [diff] [blame] | 676 | |
Bipin Ravi | 2997ab9 | 2023-10-17 06:21:15 -0500 | [diff] [blame] | 677 | # Flag to apply erratum 2326639 workaroud during powerdown. This erratum |
Boyan Karatotev | d3f8b4d | 2022-10-03 14:07:08 +0100 | [diff] [blame] | 678 | # applies to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 679 | CPU_FLAG_LIST += ERRATA_N2_2326639 |
Boyan Karatotev | d3f8b4d | 2022-10-03 14:07:08 +0100 | [diff] [blame] | 680 | |
Bipin Ravi | 2997ab9 | 2023-10-17 06:21:15 -0500 | [diff] [blame] | 681 | # Flag to apply erratum 2340933 workaroud during reset. This erratum |
| 682 | # applies to revision r0p0 of the Neoverse N2 cpu and is fixed in r0p1. |
| 683 | CPU_FLAG_LIST += ERRATA_N2_2340933 |
| 684 | |
Bipin Ravi | 03ba5d8 | 2023-10-17 05:56:01 -0500 | [diff] [blame] | 685 | # Flag to apply erratum 2346952 workaround during reset. This erratum applies |
| 686 | # to r0p0, r0p1, r0p2 of the Neoverse N2 cpu, it is fixed in r0p3. |
| 687 | CPU_FLAG_LIST += ERRATA_N2_2346952 |
| 688 | |
Akram Ahmad | b621bda | 2022-07-18 12:27:29 +0100 | [diff] [blame] | 689 | # Flag to apply erratum 2376738 workaround during reset. This erratum applies |
Arvind Ram Prakash | f99b798 | 2023-06-29 16:17:23 -0500 | [diff] [blame] | 690 | # to revision r0p0, r0p1, r0p2, r0p3 of the Neoverse N2 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 691 | CPU_FLAG_LIST += ERRATA_N2_2376738 |
Akram Ahmad | b621bda | 2022-07-18 12:27:29 +0100 | [diff] [blame] | 692 | |
Daniel Boulby | 1af2b11 | 2022-07-06 14:33:13 +0100 | [diff] [blame] | 693 | # Flag to apply erratum 2388450 workaround during reset. This erratum applies |
| 694 | # to revision r0p0 of the Neoverse N2 cpu, it is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 695 | CPU_FLAG_LIST += ERRATA_N2_2388450 |
Daniel Boulby | 1af2b11 | 2022-07-06 14:33:13 +0100 | [diff] [blame] | 696 | |
Sona Mathew | c5b386d | 2023-03-14 16:50:36 -0500 | [diff] [blame] | 697 | # Flag to apply erratum 2728475 workaround for non-arm interconnect ip. This |
| 698 | # erratum applies to r0p0, r0p1, r0p2 of the Neoverse N2 cpu, it is fixed in |
| 699 | # r0p3. |
| 700 | CPU_FLAG_LIST += ERRATA_N2_2728475 |
| 701 | |
Arvind Ram Prakash | 465f93b | 2023-07-05 17:24:23 -0500 | [diff] [blame] | 702 | # Flag to apply erratum 2743014 workaround during reset. This erratum applies |
| 703 | # to r0p0, r0p1, r0p2 of the Neoverse N2 cpu, it is fixed in r0p3. |
| 704 | CPU_FLAG_LIST += ERRATA_N2_2743014 |
| 705 | |
Bipin Ravi | cc744bf | 2022-12-07 17:01:26 -0600 | [diff] [blame] | 706 | # Flag to apply erratum 2743089 workaround during during powerdown. This erratum |
| 707 | # applies to all revisions <= r0p2 of the Neoverse N2 cpu, it is fixed in r0p3. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 708 | CPU_FLAG_LIST += ERRATA_N2_2743089 |
Bipin Ravi | cc744bf | 2022-12-07 17:01:26 -0600 | [diff] [blame] | 709 | |
Arvind Ram Prakash | 189622a | 2023-07-17 14:46:14 -0500 | [diff] [blame] | 710 | # Flag to apply erratum 2779511 workaround during reset. This erratum applies |
| 711 | # to r0p0, r0p1, r0p2 of the Neoverse N2 cpu, it is fixed in r0p3. |
| 712 | CPU_FLAG_LIST += ERRATA_N2_2779511 |
| 713 | |
johpow01 | 0afef36 | 2021-12-02 13:25:50 -0600 | [diff] [blame] | 714 | # Flag to apply erratum 2002765 workaround during reset. This erratum applies |
| 715 | # to revisions r0p0, r1p0, and r2p0 of the Cortex-X2 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 716 | CPU_FLAG_LIST += ERRATA_X2_2002765 |
johpow01 | 0afef36 | 2021-12-02 13:25:50 -0600 | [diff] [blame] | 717 | |
johpow01 | f6c37de | 2021-12-03 11:27:33 -0600 | [diff] [blame] | 718 | # Flag to apply erratum 2058056 workaround during reset. This erratum applies |
Sona Mathew | 414f4e8 | 2023-10-16 13:33:18 -0500 | [diff] [blame] | 719 | # to revisions r0p0, r1p0, r2p0 and r2p1 of the Cortex-X2 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 720 | CPU_FLAG_LIST += ERRATA_X2_2058056 |
johpow01 | f6c37de | 2021-12-03 11:27:33 -0600 | [diff] [blame] | 721 | |
johpow01 | 15f10bd | 2021-12-01 17:40:39 -0600 | [diff] [blame] | 722 | # Flag to apply erratum 2083908 workaround during reset. This erratum applies |
| 723 | # to revision r2p0 of the Cortex-X2 cpu and is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 724 | CPU_FLAG_LIST += ERRATA_X2_2083908 |
Bipin Ravi | 2f73d97 | 2022-01-20 00:01:04 -0600 | [diff] [blame] | 725 | |
| 726 | # Flag to apply erratum 2017096 workaround during reset. This erratum applies |
| 727 | # only to revisions r0p0, r1p0 and r2p0 of the Cortex-X2 cpu, it is fixed in |
| 728 | # r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 729 | CPU_FLAG_LIST += ERRATA_X2_2017096 |
johpow01 | 15f10bd | 2021-12-01 17:40:39 -0600 | [diff] [blame] | 730 | |
Bipin Ravi | 9ad5478 | 2022-01-20 00:42:05 -0600 | [diff] [blame] | 731 | # Flag to apply erratum 2081180 workaround during reset. This erratum applies |
| 732 | # only to revisions r0p0, r1p0 and r2p0 of the Cortex-X2 cpu, it is fixed in |
| 733 | # r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 734 | CPU_FLAG_LIST += ERRATA_X2_2081180 |
Bipin Ravi | 9ad5478 | 2022-01-20 00:42:05 -0600 | [diff] [blame] | 735 | |
Bipin Ravi | 78b7208 | 2022-02-06 01:29:31 -0600 | [diff] [blame] | 736 | # Flag to apply erratum 2216384 workaround during reset. This erratum applies |
| 737 | # only to revisions r0p0, r1p0 and r2p0 of the Cortex-X2 cpu, it is fixed in |
| 738 | # r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 739 | CPU_FLAG_LIST += ERRATA_X2_2216384 |
Bipin Ravi | 78b7208 | 2022-02-06 01:29:31 -0600 | [diff] [blame] | 740 | |
Bipin Ravi | c6b6521 | 2022-03-08 10:37:43 -0600 | [diff] [blame] | 741 | # Flag to apply erratum 2147715 workaround during reset. This erratum applies |
| 742 | # only to revision r2p0 of the Cortex-X2 cpu, it is fixed in r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 743 | CPU_FLAG_LIST += ERRATA_X2_2147715 |
Bipin Ravi | c6b6521 | 2022-03-08 10:37:43 -0600 | [diff] [blame] | 744 | |
Bipin Ravi | 7dccf8f | 2022-12-22 14:19:59 -0600 | [diff] [blame] | 745 | # Flag to apply erratum 2282622 workaround during reset. This erratum applies |
| 746 | # to revision r0p0, r1p0, r2p0 and r2p1 of the Cortex-X2 cpu and is still |
| 747 | # open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 748 | CPU_FLAG_LIST += ERRATA_X2_2282622 |
Bipin Ravi | 7dccf8f | 2022-12-22 14:19:59 -0600 | [diff] [blame] | 749 | |
Bipin Ravi | 4e315c3 | 2022-07-12 17:13:01 -0500 | [diff] [blame] | 750 | # Flag to apply erratum 2371105 workaround during reset. This erratum applies |
| 751 | # to revision r0p0, r1p0 and r2p0 of the Cortex-X2 cpu and is fixed in r2p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 752 | CPU_FLAG_LIST += ERRATA_X2_2371105 |
Bipin Ravi | 4e315c3 | 2022-07-12 17:13:01 -0500 | [diff] [blame] | 753 | |
Sona Mathew | c5b386d | 2023-03-14 16:50:36 -0500 | [diff] [blame] | 754 | # Flag to apply erratum 2701952 workaround for non-arm interconnect ip. This |
| 755 | # erratum applies to revisions r0p0, r1p0, r2p0, r2p1 of the Cortex-x2 cpu |
| 756 | # and is still open. |
| 757 | CPU_FLAG_LIST += ERRATA_X2_2701952 |
| 758 | |
Bipin Ravi | 483bc9e | 2023-10-17 09:11:19 -0500 | [diff] [blame] | 759 | # Flag to apply erratum 2742423 workaround during reset. This erratum applies |
| 760 | # to revisions r0p0, r1p0, r2p0 and r2p1 of the Cortex-X2 cpu and is still open. |
| 761 | CPU_FLAG_LIST += ERRATA_X2_2742423 |
| 762 | |
Bipin Ravi | 86839eb | 2022-12-07 13:54:02 -0600 | [diff] [blame] | 763 | # Flag to apply erratum 2768515 workaround during power down. This erratum |
| 764 | # applies to revision r0p0, r1p0, r2p0 and r2p1 of the Cortex-X2 cpu and is |
| 765 | # still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 766 | CPU_FLAG_LIST += ERRATA_X2_2768515 |
Bipin Ravi | 86839eb | 2022-12-07 13:54:02 -0600 | [diff] [blame] | 767 | |
Sona Mathew | c381333 | 2023-12-09 13:09:30 -0600 | [diff] [blame] | 768 | # Flag to apply erratum 2778471 workaround during reset. This erratum applies |
| 769 | # to revisions r0p0, r1p0, r2p0, r2p1 of the Cortex-X2 cpu and it is still open. |
| 770 | CPU_FLAG_LIST += ERRATA_X2_2778471 |
| 771 | |
Sona Mathew | 35c7d39 | 2023-10-03 17:09:09 -0500 | [diff] [blame] | 772 | # Flag to apply erratum 2070301 workaround on reset. This erratum applies |
| 773 | # to revisions r0p0, r1p0, r1p1 and r1p2 of the Cortex-X3 cpu and is |
| 774 | # still open. |
| 775 | CPU_FLAG_LIST += ERRATA_X3_2070301 |
| 776 | |
Boyan Karatotev | 6559dbd | 2022-10-03 14:18:28 +0100 | [diff] [blame] | 777 | # Flag to apply erratum 2313909 workaround on powerdown. This erratum applies |
| 778 | # to revisions r0p0 and r1p0 of the Cortex-X3 cpu, it is fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 779 | CPU_FLAG_LIST += ERRATA_X3_2313909 |
Boyan Karatotev | 6559dbd | 2022-10-03 14:18:28 +0100 | [diff] [blame] | 780 | |
Harrison Mutai | 82dd5ac | 2022-11-11 14:09:55 +0000 | [diff] [blame] | 781 | # Flag to apply erratum 2615812 workaround on powerdown. This erratum applies |
| 782 | # to revisions r0p0, r1p0, r1p1 of the Cortex-X3 cpu, it is still open. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 783 | CPU_FLAG_LIST += ERRATA_X3_2615812 |
Harrison Mutai | 82dd5ac | 2022-11-11 14:09:55 +0000 | [diff] [blame] | 784 | |
Sona Mathew | 9516858 | 2023-09-05 14:10:03 -0500 | [diff] [blame] | 785 | # Flag to apply erratum 2742421 workaround on reset. This erratum applies |
| 786 | # to revisions r0p0, r1p0 and r1p1 of the Cortex-X3 cpu, it is fixed in r1p2. |
| 787 | CPU_FLAG_LIST += ERRATA_X3_2742421 |
| 788 | |
Harrison Mutai | 5177554 | 2023-12-12 11:17:19 +0000 | [diff] [blame] | 789 | # Flag to apply erratum 2743088 workaround on powerdown. This erratum applies |
| 790 | # to revisions r0p0, r1p0 and r1p1 of the Cortex-X3 cpu, it is fixed in r1p2. |
| 791 | CPU_FLAG_LIST += ERRATA_X3_2743088 |
| 792 | |
Sona Mathew | 2eab9d0 | 2023-11-06 13:48:22 -0600 | [diff] [blame] | 793 | # Flag to apply erratum 2779509 workaround on reset. This erratum applies |
| 794 | # to revisions r0p0, r1p0, r1p1 of the Cortex-X3 cpu, it is fixed in r1p2. |
| 795 | CPU_FLAG_LIST += ERRATA_X3_2779509 |
| 796 | |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 797 | # Flag to apply erratum 1922240 workaround during reset. This erratum applies |
| 798 | # to revision r0p0 of the Cortex-A510 cpu and is fixed in r0p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 799 | CPU_FLAG_LIST += ERRATA_A510_1922240 |
johpow01 | de7b524 | 2022-01-04 16:15:18 -0600 | [diff] [blame] | 800 | |
johpow01 | 49f60dd | 2022-01-06 14:54:49 -0600 | [diff] [blame] | 801 | # Flag to apply erratum 2288014 workaround during reset. This erratum applies |
| 802 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0 of the Cortex-A510 cpu and is |
| 803 | # fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 804 | CPU_FLAG_LIST += ERRATA_A510_2288014 |
johpow01 | 49f60dd | 2022-01-06 14:54:49 -0600 | [diff] [blame] | 805 | |
johpow01 | 8276f25 | 2022-01-07 17:12:31 -0600 | [diff] [blame] | 806 | # Flag to apply erratum 2042739 workaround during reset. This erratum applies |
| 807 | # to revisions r0p0, r0p1 and r0p2 of the Cortex-A510 cpu and is fixed in r0p3. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 808 | CPU_FLAG_LIST += ERRATA_A510_2042739 |
johpow01 | 8276f25 | 2022-01-07 17:12:31 -0600 | [diff] [blame] | 809 | |
johpow01 | 5a99300 | 2022-01-11 17:54:41 -0600 | [diff] [blame] | 810 | # Flag to apply erratum 2041909 workaround during reset. This erratum applies |
| 811 | # to revision r0p2 of the Cortex-A510 cpu and is fixed in r0p3. The issue is |
| 812 | # present in r0p0 and r0p1 but there is no workaround for those revisions. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 813 | CPU_FLAG_LIST += ERRATA_A510_2041909 |
johpow01 | 5a99300 | 2022-01-11 17:54:41 -0600 | [diff] [blame] | 814 | |
Sona Mathew | d273f76 | 2023-10-12 12:04:53 -0500 | [diff] [blame] | 815 | # Flag to aply erratum 2080326 workaround during reset. This erratum applies |
| 816 | # to revision r0p2 of the Cortex-A510 cpu and is fixed in r0p3. The issue is |
| 817 | # also present in r0p0 and r0p1 but there is no workaround for those revisions. |
| 818 | CPU_FLAG_LIST += ERRATA_A510_2080326 |
| 819 | |
johpow01 | 3ba9cb2 | 2022-02-13 21:00:10 -0600 | [diff] [blame] | 820 | # Flag to apply erratum 2250311 workaround during reset. This erratum applies |
| 821 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0, and is fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 822 | CPU_FLAG_LIST += ERRATA_A510_2250311 |
johpow01 | 3ba9cb2 | 2022-02-13 21:00:10 -0600 | [diff] [blame] | 823 | |
johpow01 | 3ead295 | 2022-02-14 20:19:08 -0600 | [diff] [blame] | 824 | # Flag to apply erratum 2218950 workaround during reset. This erratum applies |
| 825 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0, and is fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 826 | CPU_FLAG_LIST += ERRATA_A510_2218950 |
johpow01 | 3ead295 | 2022-02-14 20:19:08 -0600 | [diff] [blame] | 827 | |
johpow01 | ac55c01 | 2022-02-15 22:55:22 -0600 | [diff] [blame] | 828 | # Flag to apply erratum 2172148 workaround during reset. This erratum applies |
| 829 | # to revisions r0p0, r0p1, r0p2, r0p3 and r1p0, and is fixed in r1p1. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 830 | CPU_FLAG_LIST += ERRATA_A510_2172148 |
johpow01 | ac55c01 | 2022-02-15 22:55:22 -0600 | [diff] [blame] | 831 | |
Akram Ahmad | a85254e | 2022-07-21 14:01:33 +0100 | [diff] [blame] | 832 | # Flag to apply erratum 2347730 workaround during reset. This erratum applies |
| 833 | # to revisions r0p0, r0p1, r0p2, r0p3, r1p0 and r1p1 of the Cortex-A510 CPU, |
| 834 | # and is fixed in r1p2. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 835 | CPU_FLAG_LIST += ERRATA_A510_2347730 |
Akram Ahmad | a85254e | 2022-07-21 14:01:33 +0100 | [diff] [blame] | 836 | |
Akram Ahmad | 60accba | 2022-07-22 16:20:44 +0100 | [diff] [blame] | 837 | # Flag to apply erratum 2371937 workaround during reset. This erratum applies |
| 838 | # to revisions r0p0, r0p1, r0p2, r0p3, r1p0, and r1p1. It is fixed in r1p2. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 839 | CPU_FLAG_LIST += ERRATA_A510_2371937 |
Akram Ahmad | 60accba | 2022-07-22 16:20:44 +0100 | [diff] [blame] | 840 | |
Akram Ahmad | 89034d6 | 2022-09-21 13:59:56 +0100 | [diff] [blame] | 841 | # Flag to apply erratum 2666669 workaround during reset. This erratum applies |
| 842 | # to revisions r0p0, r0p1, r0p2, r0p3, r1p0, and r1p1. It is fixed in r1p2. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 843 | CPU_FLAG_LIST += ERRATA_A510_2666669 |
Akram Ahmad | 89034d6 | 2022-09-21 13:59:56 +0100 | [diff] [blame] | 844 | |
Harrison Mutai | e5249fe | 2022-12-09 12:14:25 +0000 | [diff] [blame] | 845 | # Flag to apply erratum 2684597 workaround during powerdown. This erratum |
| 846 | # applies to revision r0p0, r0p1, r0p2, r0p3, r1p0, r1p1 and r1p2 of the |
| 847 | # Cortex-A510 cpu and is fixed in r1p3. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 848 | CPU_FLAG_LIST += ERRATA_A510_2684597 |
Harrison Mutai | e5249fe | 2022-12-09 12:14:25 +0000 | [diff] [blame] | 849 | |
Sona Mathew | 8782114 | 2023-12-09 20:44:56 -0600 | [diff] [blame] | 850 | # Flag to apply erratum 2630792 workaround during reset. This erratum applies |
| 851 | # to revisions r0p0, r0p1 of the Cortex-A520 cpu and is still open. |
| 852 | CPU_FLAG_LIST += ERRATA_A520_2630792 |
| 853 | |
Arvind Ram Prakash | 512c236 | 2023-12-08 20:19:58 -0600 | [diff] [blame] | 854 | # Flag to apply erratum 2858100 workaround during reset. This erratum |
| 855 | # applies to revision r0p0 and r0p1 of the Cortex-A520 cpu and is still open. |
| 856 | CPU_FLAG_LIST += ERRATA_A520_2858100 |
| 857 | |
Bipin Ravi | 4f9b75f | 2023-09-18 16:34:13 -0500 | [diff] [blame] | 858 | # Flag to apply erratum 2331132 workaround during reset. This erratum applies |
| 859 | # to revisions r0p0, r0p1 and r0p2. It is still open. |
| 860 | CPU_FLAG_LIST += ERRATA_V2_2331132 |
| 861 | |
Bipin Ravi | afcf4fe | 2023-10-17 19:42:15 -0500 | [diff] [blame] | 862 | # Flag to apply erratum 2618597 workaround during reset. This erratum applies |
| 863 | # to revisions r0p0 and r0p1. It is fixed in r0p2. |
| 864 | CPU_FLAG_LIST += ERRATA_V2_2618597 |
| 865 | |
Bipin Ravi | 4b46c78 | 2023-10-17 18:35:55 -0500 | [diff] [blame] | 866 | # Flag to apply erratum 2662553 workaround during reset. This erratum applies |
| 867 | # to revisions r0p0 and r0p1. It is fixed in r0p2. |
| 868 | CPU_FLAG_LIST += ERRATA_V2_2662553 |
| 869 | |
Sona Mathew | c5b386d | 2023-03-14 16:50:36 -0500 | [diff] [blame] | 870 | # Flag to apply erratum 2719103 workaround for non-arm interconnect ip. This |
| 871 | # erratum applies to revisions r0p0, rop1. Fixed in r0p2. |
| 872 | CPU_FLAG_LIST += ERRATA_V2_2719103 |
| 873 | |
Bipin Ravi | 90aaf98 | 2023-09-18 17:27:29 -0500 | [diff] [blame] | 874 | # Flag to apply erratum 2719105 workaround during reset. This erratum applies |
| 875 | # to revisions r0p0 and r0p1. It is fixed in r0p2. |
| 876 | CPU_FLAG_LIST += ERRATA_V2_2719105 |
| 877 | |
Bipin Ravi | a20d061 | 2023-09-18 19:54:41 -0500 | [diff] [blame] | 878 | # Flag to apply erratum 2743011 workaround during reset. This erratum applies |
| 879 | # to revisions r0p0 and r0p1. It is fixed in r0p2. |
| 880 | CPU_FLAG_LIST += ERRATA_V2_2743011 |
| 881 | |
Bipin Ravi | 9d46b35 | 2023-09-18 19:28:32 -0500 | [diff] [blame] | 882 | # Flag to apply erratum 2779510 workaround during reset. This erratum applies |
| 883 | # to revisions r0p0 and r0p1. It is fixed in r0p2. |
| 884 | CPU_FLAG_LIST += ERRATA_V2_2779510 |
| 885 | |
Moritz Fischer | 9887006 | 2023-07-06 00:01:23 +0000 | [diff] [blame] | 886 | # Flag to apply erratum 2801372 workaround for all configurations. |
| 887 | # This erratum applies to revisions r0p0, r0p1. Fixed in r0p2. |
| 888 | CPU_FLAG_LIST += ERRATA_V2_2801372 |
| 889 | |
Sona Mathew | c5b386d | 2023-03-14 16:50:36 -0500 | [diff] [blame] | 890 | # Flag to apply erratum 2701951 workaround for non-arm interconnect ip. |
| 891 | # This erratum applies to revisions r0p0, r1p0, and r1p1. Its is fixed in r1p2. |
| 892 | CPU_FLAG_LIST += ERRATA_A715_2701951 |
| 893 | |
Louis Mayencourt | 4498b15 | 2019-04-09 16:29:01 +0100 | [diff] [blame] | 894 | # Flag to apply DSU erratum 798953. This erratum applies to DSUs revision r0p0. |
| 895 | # Applying the workaround results in higher DSU power consumption on idle. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 896 | CPU_FLAG_LIST += ERRATA_DSU_798953 |
Louis Mayencourt | 4498b15 | 2019-04-09 16:29:01 +0100 | [diff] [blame] | 897 | |
John Tsichritzis | 4daa1de | 2018-07-23 09:11:59 +0100 | [diff] [blame] | 898 | # Flag to apply DSU erratum 936184. This erratum applies to DSUs containing |
| 899 | # the ACP interface and revision < r2p0. Applying the workaround results in |
| 900 | # higher DSU power consumption on idle. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 901 | CPU_FLAG_LIST += ERRATA_DSU_936184 |
John Tsichritzis | 4daa1de | 2018-07-23 09:11:59 +0100 | [diff] [blame] | 902 | |
Bipin Ravi | af40d69 | 2021-12-22 14:35:21 -0600 | [diff] [blame] | 903 | # Flag to apply DSU erratum 2313941. This erratum applies to DSUs revisions |
| 904 | # r0p0, r1p0, r2p0, r2p1, r3p0, r3p1 and is still open. Applying the workaround |
| 905 | # results in higher DSU power consumption on idle. |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 906 | CPU_FLAG_LIST += ERRATA_DSU_2313941 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 907 | |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 908 | ifneq (${DYNAMIC_WORKAROUND_CVE_2018_3639},0) |
| 909 | ifeq (${WORKAROUND_CVE_2018_3639},0) |
| 910 | $(error "Error: WORKAROUND_CVE_2018_3639 must be 1 if DYNAMIC_WORKAROUND_CVE_2018_3639 is 1") |
| 911 | endif |
| 912 | endif |
John Tsichritzis | 4daa1de | 2018-07-23 09:11:59 +0100 | [diff] [blame] | 913 | |
Boyan Karatotev | b4f25db | 2022-11-17 12:01:29 +0000 | [diff] [blame] | 914 | # process all flags |
| 915 | $(eval $(call default_zeros, $(CPU_FLAG_LIST))) |
| 916 | $(eval $(call add_defines, $(CPU_FLAG_LIST))) |
| 917 | $(eval $(call assert_booleans, $(CPU_FLAG_LIST))) |
Bipin Ravi | af40d69 | 2021-12-22 14:35:21 -0600 | [diff] [blame] | 918 | |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 919 | # Errata build flags |
| 920 | ifneq (${ERRATA_A53_843419},0) |
Douglas Raillard | d0c8273 | 2017-06-22 14:44:48 +0100 | [diff] [blame] | 921 | TF_LDFLAGS_aarch64 += --fix-cortex-a53-843419 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 922 | endif |
| 923 | |
| 924 | ifneq (${ERRATA_A53_835769},0) |
| 925 | TF_CFLAGS_aarch64 += -mfix-cortex-a53-835769 |
Douglas Raillard | d0c8273 | 2017-06-22 14:44:48 +0100 | [diff] [blame] | 926 | TF_LDFLAGS_aarch64 += --fix-cortex-a53-835769 |
Douglas Raillard | d56fb04 | 2017-06-19 15:38:02 +0100 | [diff] [blame] | 927 | endif |
Manish V Badarkhe | 7672edf | 2020-08-03 18:43:14 +0100 | [diff] [blame] | 928 | |
| 929 | ifneq ($(filter 1,${ERRATA_A53_1530924} ${ERRATA_A55_1530923} \ |
| 930 | ${ERRATA_A57_1319537} ${ERRATA_A72_1319367} ${ERRATA_A76_1165522}),) |
| 931 | ERRATA_SPECULATIVE_AT := 1 |
| 932 | else |
| 933 | ERRATA_SPECULATIVE_AT := 0 |
| 934 | endif |