diff options
| author | Vikram Kanigiri <vikram.kanigiri@arm.com> | 2015-01-29 18:27:38 +0000 |
|---|---|---|
| committer | Vikram Kanigiri <vikram.kanigiri@arm.com> | 2015-03-13 10:38:09 +0000 |
| commit | 12e7c4ab0bbc9d9d4e950bdbda5a86f61c13bc1a (patch) | |
| tree | b8a888b28f2df72aaae1b759fa3c3c74c8693a2a /include/bl31 | |
| parent | 5930eadbe5d8d4c3f15fd910476f72cd5bf86f44 (diff) | |
Initialise cpu ops after enabling data cache
The cpu-ops pointer was initialized before enabling the data cache in the cold
and warm boot paths. This required a DCIVAC cache maintenance operation to
invalidate any stale cache lines resident in other cpus.
This patch moves this initialization to the bl31_arch_setup() function
which is always called after the data cache and MMU has been enabled.
This change removes the need:
1. for the DCIVAC cache maintenance operation.
2. to initialise the CPU ops upon resumption from a PSCI CPU_SUSPEND
call since memory contents are always preserved in this case.
Change-Id: Ibb2fa2f7460d1a1f1e721242025e382734c204c6
Diffstat (limited to 'include/bl31')
| -rw-r--r-- | include/bl31/cpu_data.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/bl31/cpu_data.h b/include/bl31/cpu_data.h index 1926e292..50f509bb 100644 --- a/include/bl31/cpu_data.h +++ b/include/bl31/cpu_data.h @@ -117,6 +117,7 @@ static inline struct cpu_data *_cpu_data(void) *************************************************************************/ void init_cpu_data_ptr(void); +void init_cpu_ops(void); #define get_cpu_data(_m) _cpu_data()->_m #define set_cpu_data(_m, _v) _cpu_data()->_m = _v |
