diff options
author | Nisal Menuka <nisalmenuka23@gmail.com> | 2017-04-26 16:18:01 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-08 11:57:36 -0400 |
commit | 8776350d87c6aa02644a345f2fad04f3f952e48a (patch) | |
tree | be7d1528cef55d9681c516ec598a57de662c13dd /arch/arm/Kconfig | |
parent | d5c16d00932f819fa161b156c237a56683608078 (diff) | |
download | u-boot-8776350d87c6aa02644a345f2fad04f3f952e48a.tar.gz |
Add ARM errata workaround 852421 and 852423 for Cortex-A17
ARM errata 852421 and 852423 applies to r1p0, r1p1 and r1p2
revisions of Cortex-A17 processors. These workarounds
exist in Linux kernel and I thought it would be better
to add them in to U-Boot.
Signed-off-by: Nisal Menuka <nisalmenuka23@gmail.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 08480ac36d..054ccac12b 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -88,6 +88,12 @@ config ARM_ERRATA_833069 config ARM_ERRATA_833471 bool +config ARM_ERRATA_852421 + bool + +config ARM_ERRATA_852423 + bool + config CPU_ARM720T bool select SYS_CACHE_SHIFT_5 |