Soby Mathew | 5541bb3 | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 1 | ARM CPU Specific Build Macros |
| 2 | ============================= |
| 3 | |
| 4 | Contents |
| 5 | -------- |
| 6 | |
Joakim Bech | 14a5b34 | 2014-11-25 10:55:26 +0100 | [diff] [blame] | 7 | 1. [Introduction](#1--introduction) |
| 8 | 2. [CPU Errata Workarounds](#2--cpu-errata-workarounds) |
| 9 | 3. [CPU Specific optimizations](#3--cpu-specific-optimizations) |
| 10 | |
Soby Mathew | 5541bb3 | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 11 | |
| 12 | 1. Introduction |
| 13 | ---------------- |
| 14 | |
| 15 | This document describes the various build options present in the CPU specific |
| 16 | operations framework to enable errata workarounds and to enable optimizations |
| 17 | for a specific CPU on a platform. |
| 18 | |
| 19 | 2. CPU Errata Workarounds |
| 20 | -------------------------- |
Soby Mathew | 3fd5ddf | 2014-08-18 16:57:56 +0100 | [diff] [blame] | 21 | |
Sandrine Bailleux | 4480425 | 2014-08-06 11:27:23 +0100 | [diff] [blame] | 22 | ARM Trusted Firmware exports a series of build flags which control the |
Soby Mathew | 3fd5ddf | 2014-08-18 16:57:56 +0100 | [diff] [blame] | 23 | errata workarounds that are applied to each CPU by the reset handler. The |
| 24 | errata details can be found in the CPU specifc errata documents published |
| 25 | by ARM. The errata workarounds are implemented for a particular revision |
Soby Mathew | 7395a72 | 2014-09-22 12:11:36 +0100 | [diff] [blame] | 26 | or a set of processor revisions. This is checked by reset handler at runtime. |
Soby Mathew | 3fd5ddf | 2014-08-18 16:57:56 +0100 | [diff] [blame] | 27 | Each errata workaround is identified by its `ID` as specified in the processor's |
| 28 | errata notice document. The format of the define used to enable/disable the |
| 29 | errata is `ERRATA_<Processor name>_<ID>` where the `Processor name` |
| 30 | is either `A57` for the `Cortex_A57` CPU or `A53` for `Cortex_A53` CPU. |
| 31 | |
| 32 | All workarounds are disabled by default. The platform is reponsible for |
| 33 | enabling these workarounds according to its requirement by defining the |
Soby Mathew | 7395a72 | 2014-09-22 12:11:36 +0100 | [diff] [blame] | 34 | errata workaround build flags in the platform specific makefile. In case |
| 35 | these workarounds are enabled for the wrong CPU revision then the errata |
| 36 | workaround is not applied. In the DEBUG build, this is indicated by |
| 37 | printing a warning to the crash console. |
Soby Mathew | 3fd5ddf | 2014-08-18 16:57:56 +0100 | [diff] [blame] | 38 | |
| 39 | In the current implementation, a platform which has more than 1 variant |
| 40 | with different revisions of a processor has no runtime mechanism available |
| 41 | for it to specify which errata workarounds should be enabled or not. |
| 42 | |
Sandrine Bailleux | 4480425 | 2014-08-06 11:27:23 +0100 | [diff] [blame] | 43 | The value of the build flags are 0 by default, that is, disabled. Any other |
Soby Mathew | 3fd5ddf | 2014-08-18 16:57:56 +0100 | [diff] [blame] | 44 | value will enable it. |
| 45 | |
Soby Mathew | 7395a72 | 2014-09-22 12:11:36 +0100 | [diff] [blame] | 46 | For Cortex-A57, following errata build flags are defined : |
Soby Mathew | 3fd5ddf | 2014-08-18 16:57:56 +0100 | [diff] [blame] | 47 | |
Soby Mathew | 7395a72 | 2014-09-22 12:11:36 +0100 | [diff] [blame] | 48 | * `ERRATA_A57_806969`: This applies errata 806969 workaround to Cortex-A57 |
Soby Mathew | 3fd5ddf | 2014-08-18 16:57:56 +0100 | [diff] [blame] | 49 | CPU. This needs to be enabled only for revision r0p0 of the CPU. |
| 50 | |
Soby Mathew | 7395a72 | 2014-09-22 12:11:36 +0100 | [diff] [blame] | 51 | * `ERRATA_A57_813420`: This applies errata 813420 workaround to Cortex-A57 |
Soby Mathew | 3fd5ddf | 2014-08-18 16:57:56 +0100 | [diff] [blame] | 52 | CPU. This needs to be enabled only for revision r0p0 of the CPU. |
| 53 | |
Soby Mathew | 5541bb3 | 2014-09-22 14:13:34 +0100 | [diff] [blame] | 54 | 3. CPU Specific optimizations |
| 55 | ------------------------------ |
| 56 | |
| 57 | This section describes some of the optimizations allowed by the CPU micro |
| 58 | architecture that can be enabled by the platform as desired. |
| 59 | |
| 60 | * `SKIP_A57_L1_FLUSH_PWR_DWN`: This flag enables an optimization in the |
| 61 | Cortex-A57 cluster power down sequence by not flushing the Level 1 data |
| 62 | cache. The L1 data cache and the L2 unified cache are inclusive. A flush |
| 63 | of the L2 by set/way flushes any dirty lines from the L1 as well. This |
| 64 | is a known safe deviation from the Cortex-A57 TRM defined power down |
| 65 | sequence. Each Cortex-A57 based platform must make its own decision on |
| 66 | whether to use the optimization. |
| 67 | |
Soby Mathew | 3fd5ddf | 2014-08-18 16:57:56 +0100 | [diff] [blame] | 68 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
| 69 | |
| 70 | _Copyright (c) 2014, ARM Limited and Contributors. All rights reserved._ |