Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 1 | /* |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 2 | * Copyright (c) 2014-2016, ARM Limited and Contributors. All rights reserved. |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __CPU_DATA_H__ |
| 8 | #define __CPU_DATA_H__ |
| 9 | |
Etienne Carriere | 97ad6ce | 2017-09-01 10:22:20 +0200 | [diff] [blame] | 10 | #include <platform_def.h> /* CACHE_WRITEBACK_GRANULE required */ |
| 11 | |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 12 | #ifdef AARCH32 |
| 13 | |
| 14 | #if CRASH_REPORTING |
| 15 | #error "Crash reporting is not supported in AArch32" |
| 16 | #endif |
| 17 | #define CPU_DATA_CPU_OPS_PTR 0x0 |
Etienne Carriere | 97ad6ce | 2017-09-01 10:22:20 +0200 | [diff] [blame] | 18 | #define CPU_DATA_CRASH_BUF_OFFSET 0x4 |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 19 | |
| 20 | #else /* AARCH32 */ |
| 21 | |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 22 | /* Offsets for the cpu_data structure */ |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 23 | #define CPU_DATA_CRASH_BUF_OFFSET 0x18 |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 24 | /* need enough space in crash buffer to save 8 registers */ |
| 25 | #define CPU_DATA_CRASH_BUF_SIZE 64 |
| 26 | #define CPU_DATA_CPU_OPS_PTR 0x10 |
| 27 | |
| 28 | #endif /* AARCH32 */ |
| 29 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 30 | #if CRASH_REPORTING |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 31 | #define CPU_DATA_CRASH_BUF_END (CPU_DATA_CRASH_BUF_OFFSET + \ |
| 32 | CPU_DATA_CRASH_BUF_SIZE) |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 33 | #else |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 34 | #define CPU_DATA_CRASH_BUF_END CPU_DATA_CRASH_BUF_OFFSET |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 35 | #endif |
Soby Mathew | c704cbc | 2014-08-14 11:33:56 +0100 | [diff] [blame] | 36 | |
Etienne Carriere | 97ad6ce | 2017-09-01 10:22:20 +0200 | [diff] [blame] | 37 | /* cpu_data size is the data size rounded up to the platform cache line size */ |
| 38 | #define CPU_DATA_SIZE (((CPU_DATA_CRASH_BUF_END + \ |
| 39 | CACHE_WRITEBACK_GRANULE - 1) / \ |
| 40 | CACHE_WRITEBACK_GRANULE) * \ |
| 41 | CACHE_WRITEBACK_GRANULE) |
| 42 | |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 43 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 44 | /* Temporary space to store PMF timestamps from assembly code */ |
| 45 | #define CPU_DATA_PMF_TS_COUNT 1 |
| 46 | #define CPU_DATA_PMF_TS0_OFFSET CPU_DATA_CRASH_BUF_END |
| 47 | #define CPU_DATA_PMF_TS0_IDX 0 |
| 48 | #endif |
| 49 | |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 50 | #ifndef __ASSEMBLY__ |
| 51 | |
| 52 | #include <arch_helpers.h> |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 53 | #include <cassert.h> |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 54 | #include <platform_def.h> |
Achin Gupta | f3ccbab | 2014-07-25 14:52:47 +0100 | [diff] [blame] | 55 | #include <psci.h> |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 56 | #include <stdint.h> |
| 57 | |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 58 | /* Offsets for the cpu_data structure */ |
| 59 | #define CPU_DATA_PSCI_LOCK_OFFSET __builtin_offsetof\ |
| 60 | (cpu_data_t, psci_svc_cpu_data.pcpu_bakery_info) |
| 61 | |
| 62 | #if PLAT_PCPU_DATA_SIZE |
| 63 | #define CPU_DATA_PLAT_PCPU_OFFSET __builtin_offsetof\ |
| 64 | (cpu_data_t, platform_cpu_data) |
| 65 | #endif |
| 66 | |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 67 | /******************************************************************************* |
| 68 | * Function & variable prototypes |
| 69 | ******************************************************************************/ |
| 70 | |
| 71 | /******************************************************************************* |
| 72 | * Cache of frequently used per-cpu data: |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 73 | * Pointers to non-secure and secure security state contexts |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 74 | * Address of the crash stack |
| 75 | * It is aligned to the cache line boundary to allow efficient concurrent |
| 76 | * manipulation of these pointers on different cpus |
| 77 | * |
| 78 | * TODO: Add other commonly used variables to this (tf_issues#90) |
| 79 | * |
| 80 | * The data structure and the _cpu_data accessors should not be used directly |
| 81 | * by components that have per-cpu members. The member access macros should be |
| 82 | * used for this. |
| 83 | ******************************************************************************/ |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 84 | typedef struct cpu_data { |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 85 | #ifndef AARCH32 |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 86 | void *cpu_context[2]; |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 87 | #endif |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 88 | uintptr_t cpu_ops_ptr; |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 89 | #if CRASH_REPORTING |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 90 | u_register_t crash_buf[CPU_DATA_CRASH_BUF_SIZE >> 3]; |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 91 | #endif |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 92 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 93 | uint64_t cpu_data_pmf_ts[CPU_DATA_PMF_TS_COUNT]; |
| 94 | #endif |
Soby Mathew | 523d633 | 2015-01-08 18:02:19 +0000 | [diff] [blame] | 95 | struct psci_cpu_data psci_svc_cpu_data; |
| 96 | #if PLAT_PCPU_DATA_SIZE |
| 97 | uint8_t platform_cpu_data[PLAT_PCPU_DATA_SIZE]; |
| 98 | #endif |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 99 | } __aligned(CACHE_WRITEBACK_GRANULE) cpu_data_t; |
| 100 | |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 101 | #if CRASH_REPORTING |
| 102 | /* verify assembler offsets match data structures */ |
| 103 | CASSERT(CPU_DATA_CRASH_BUF_OFFSET == __builtin_offsetof |
| 104 | (cpu_data_t, crash_buf), |
| 105 | assert_cpu_data_crash_stack_offset_mismatch); |
| 106 | #endif |
| 107 | |
Etienne Carriere | 97ad6ce | 2017-09-01 10:22:20 +0200 | [diff] [blame] | 108 | CASSERT(CPU_DATA_SIZE == sizeof(cpu_data_t), |
| 109 | assert_cpu_data_size_mismatch); |
Soby Mathew | c1adbbc | 2014-06-25 10:07:40 +0100 | [diff] [blame] | 110 | |
Soby Mathew | c704cbc | 2014-08-14 11:33:56 +0100 | [diff] [blame] | 111 | CASSERT(CPU_DATA_CPU_OPS_PTR == __builtin_offsetof |
| 112 | (cpu_data_t, cpu_ops_ptr), |
| 113 | assert_cpu_data_cpu_ops_ptr_offset_mismatch); |
| 114 | |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 115 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 116 | CASSERT(CPU_DATA_PMF_TS0_OFFSET == __builtin_offsetof |
| 117 | (cpu_data_t, cpu_data_pmf_ts[0]), |
| 118 | assert_cpu_data_pmf_ts0_offset_mismatch); |
| 119 | #endif |
| 120 | |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 121 | struct cpu_data *_cpu_data_by_index(uint32_t cpu_index); |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 122 | |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 123 | #ifndef AARCH32 |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 124 | /* Return the cpu_data structure for the current CPU. */ |
| 125 | static inline struct cpu_data *_cpu_data(void) |
| 126 | { |
| 127 | return (cpu_data_t *)read_tpidr_el3(); |
| 128 | } |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 129 | #else |
| 130 | struct cpu_data *_cpu_data(void); |
| 131 | #endif |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 132 | |
| 133 | /************************************************************************** |
| 134 | * APIs for initialising and accessing per-cpu data |
| 135 | *************************************************************************/ |
| 136 | |
| 137 | void init_cpu_data_ptr(void); |
Vikram Kanigiri | 9b38fc8 | 2015-01-29 18:27:38 +0000 | [diff] [blame] | 138 | void init_cpu_ops(void); |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 139 | |
| 140 | #define get_cpu_data(_m) _cpu_data()->_m |
| 141 | #define set_cpu_data(_m, _v) _cpu_data()->_m = _v |
| 142 | #define get_cpu_data_by_index(_ix, _m) _cpu_data_by_index(_ix)->_m |
| 143 | #define set_cpu_data_by_index(_ix, _m, _v) _cpu_data_by_index(_ix)->_m = _v |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 144 | |
Soby Mathew | 24ab34f | 2016-05-03 17:11:42 +0100 | [diff] [blame] | 145 | #define flush_cpu_data(_m) flush_dcache_range((uintptr_t) \ |
Achin Gupta | e4b9fa4 | 2014-07-25 14:47:05 +0100 | [diff] [blame] | 146 | &(_cpu_data()->_m), \ |
| 147 | sizeof(_cpu_data()->_m)) |
Soby Mathew | 24ab34f | 2016-05-03 17:11:42 +0100 | [diff] [blame] | 148 | #define inv_cpu_data(_m) inv_dcache_range((uintptr_t) \ |
Soby Mathew | 85dbf5a | 2015-04-07 12:16:56 +0100 | [diff] [blame] | 149 | &(_cpu_data()->_m), \ |
| 150 | sizeof(_cpu_data()->_m)) |
Soby Mathew | 7d861ea | 2014-11-18 10:14:14 +0000 | [diff] [blame] | 151 | #define flush_cpu_data_by_index(_ix, _m) \ |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 152 | flush_dcache_range((uintptr_t) \ |
Soby Mathew | 7d861ea | 2014-11-18 10:14:14 +0000 | [diff] [blame] | 153 | &(_cpu_data_by_index(_ix)->_m), \ |
| 154 | sizeof(_cpu_data_by_index(_ix)->_m)) |
Achin Gupta | e4b9fa4 | 2014-07-25 14:47:05 +0100 | [diff] [blame] | 155 | |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 156 | |
| 157 | #endif /* __ASSEMBLY__ */ |
| 158 | #endif /* __CPU_DATA_H__ */ |