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