blob: 37697f521a83a9b933857a8a84d71900e0fc1fd9 [file] [log] [blame]
Soby Mathew523d6332015-01-08 18:02:19 +00001/*
Joel Hutton5cc3bc82018-03-21 11:40:57 +00002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Soby Mathew523d6332015-01-08 18:02:19 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathew523d6332015-01-08 18:02:19 +00005 */
6
7#include <arch_helpers.h>
8#include <assert.h>
9#include <bakery_lock.h>
10#include <cpu_data.h>
11#include <platform.h>
12#include <string.h>
Joel Hutton5cc3bc82018-03-21 11:40:57 +000013#include <utils_def.h>
Soby Mathew523d6332015-01-08 18:02:19 +000014
15/*
16 * Functions in this file implement Bakery Algorithm for mutual exclusion with the
17 * bakery lock data structures in cacheable and Normal memory.
18 *
19 * ARM architecture offers a family of exclusive access instructions to
20 * efficiently implement mutual exclusion with hardware support. However, as
21 * well as depending on external hardware, these instructions have defined
22 * behavior only on certain memory types (cacheable and Normal memory in
23 * particular; see ARMv8 Architecture Reference Manual section B2.10). Use cases
24 * in trusted firmware are such that mutual exclusion implementation cannot
25 * expect that accesses to the lock have the specific type required by the
26 * architecture for these primitives to function (for example, not all
27 * contenders may have address translation enabled).
28 *
29 * This implementation does not use mutual exclusion primitives. It expects
30 * memory regions where the locks reside to be cacheable and Normal.
31 *
32 * Note that the ARM architecture guarantees single-copy atomicity for aligned
33 * accesses regardless of status of address translation.
34 */
35
Andrew Thoelkee466c9f2015-09-10 11:39:36 +010036#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
37/*
38 * Verify that the platform defined value for the per-cpu space for bakery locks is
39 * a multiple of the cache line size, to prevent multiple CPUs writing to the same
40 * bakery lock cache line
41 *
42 * Using this value, if provided, rather than the linker generated value results in
43 * more efficient code
44 */
45CASSERT((PLAT_PERCPU_BAKERY_LOCK_SIZE & (CACHE_WRITEBACK_GRANULE - 1)) == 0, \
46 PLAT_PERCPU_BAKERY_LOCK_SIZE_not_cacheline_multiple);
47#define PERCPU_BAKERY_LOCK_SIZE (PLAT_PERCPU_BAKERY_LOCK_SIZE)
48#else
49/*
50 * Use the linker defined symbol which has evaluated the size reqiurement.
51 * This is not as efficient as using a platform defined constant
52 */
Joel Hutton5cc3bc82018-03-21 11:40:57 +000053IMPORT_SYM(uintptr_t, __PERCPU_BAKERY_LOCK_SIZE__, PERCPU_BAKERY_LOCK_SIZE);
Andrew Thoelkee466c9f2015-09-10 11:39:36 +010054#endif
Soby Mathew523d6332015-01-08 18:02:19 +000055
Andrew Thoelkee466c9f2015-09-10 11:39:36 +010056#define get_bakery_info(cpu_ix, lock) \
57 (bakery_info_t *)((uintptr_t)lock + cpu_ix * PERCPU_BAKERY_LOCK_SIZE)
Soby Mathew523d6332015-01-08 18:02:19 +000058
59#define write_cache_op(addr, cached) \
60 do { \
Soby Mathewa0fedc42016-06-16 14:52:04 +010061 (cached ? dccvac((uintptr_t)addr) :\
62 dcivac((uintptr_t)addr));\
Soby Mathew523d6332015-01-08 18:02:19 +000063 dsbish();\
64 } while (0)
65
66#define read_cache_op(addr, cached) if (cached) \
Soby Mathewa0fedc42016-06-16 14:52:04 +010067 dccivac((uintptr_t)addr)
Soby Mathew523d6332015-01-08 18:02:19 +000068
Soby Mathewf9baaa52016-11-14 17:19:35 +000069/* Helper function to check if the lock is acquired */
70static inline int is_lock_acquired(const bakery_info_t *my_bakery_info,
71 int is_cached)
72{
73 /*
74 * Even though lock data is updated only by the owning cpu and
75 * appropriate cache maintenance operations are performed,
76 * if the previous update was done when the cpu was not participating
77 * in coherency, then there is a chance that cache maintenance
78 * operations were not propagated to all the caches in the system.
79 * Hence do a `read_cache_op()` prior to read.
80 */
81 read_cache_op(my_bakery_info, is_cached);
82 return !!(bakery_ticket_number(my_bakery_info->lock_data));
83}
84
Andrew Thoelkee466c9f2015-09-10 11:39:36 +010085static unsigned int bakery_get_ticket(bakery_lock_t *lock,
Soby Mathew523d6332015-01-08 18:02:19 +000086 unsigned int me, int is_cached)
87{
88 unsigned int my_ticket, their_ticket;
89 unsigned int they;
90 bakery_info_t *my_bakery_info, *their_bakery_info;
91
92 /*
93 * Obtain a reference to the bakery information for this cpu and ensure
94 * it is not NULL.
95 */
Andrew Thoelkee466c9f2015-09-10 11:39:36 +010096 my_bakery_info = get_bakery_info(me, lock);
Soby Mathew523d6332015-01-08 18:02:19 +000097 assert(my_bakery_info);
98
Soby Mathewf9baaa52016-11-14 17:19:35 +000099 /* Prevent recursive acquisition.*/
100 assert(!is_lock_acquired(my_bakery_info, is_cached));
Soby Mathew156280c2015-02-20 16:04:17 +0000101
102 /*
Soby Mathew523d6332015-01-08 18:02:19 +0000103 * Tell other contenders that we are through the bakery doorway i.e.
104 * going to allocate a ticket for this cpu.
105 */
106 my_ticket = 0;
107 my_bakery_info->lock_data = make_bakery_data(CHOOSING_TICKET, my_ticket);
108
109 write_cache_op(my_bakery_info, is_cached);
110
111 /*
112 * Iterate through the bakery information of each contender to allocate
113 * the highest ticket number for this cpu.
114 */
115 for (they = 0; they < BAKERY_LOCK_MAX_CPUS; they++) {
116 if (me == they)
117 continue;
118
119 /*
120 * Get a reference to the other contender's bakery info and
121 * ensure that a stale copy is not read.
122 */
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100123 their_bakery_info = get_bakery_info(they, lock);
Soby Mathew523d6332015-01-08 18:02:19 +0000124 assert(their_bakery_info);
125
126 read_cache_op(their_bakery_info, is_cached);
127
128 /*
129 * Update this cpu's ticket number if a higher ticket number is
130 * seen
131 */
132 their_ticket = bakery_ticket_number(their_bakery_info->lock_data);
133 if (their_ticket > my_ticket)
134 my_ticket = their_ticket;
135 }
136
137 /*
138 * Compute ticket; then signal to other contenders waiting for us to
139 * finish calculating our ticket value that we're done
140 */
141 ++my_ticket;
Soby Mathewa0a897d2015-02-19 16:23:51 +0000142 my_bakery_info->lock_data = make_bakery_data(CHOSEN_TICKET, my_ticket);
Soby Mathew523d6332015-01-08 18:02:19 +0000143
144 write_cache_op(my_bakery_info, is_cached);
145
146 return my_ticket;
147}
148
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100149void bakery_lock_get(bakery_lock_t *lock)
Soby Mathew523d6332015-01-08 18:02:19 +0000150{
151 unsigned int they, me, is_cached;
152 unsigned int my_ticket, my_prio, their_ticket;
153 bakery_info_t *their_bakery_info;
Soby Mathewa0a897d2015-02-19 16:23:51 +0000154 unsigned int their_bakery_data;
Soby Mathew523d6332015-01-08 18:02:19 +0000155
Soby Mathew3700a922015-07-13 11:21:11 +0100156 me = plat_my_core_pos();
Soby Mathew077ab542017-02-14 10:16:18 +0000157#ifdef AARCH32
158 is_cached = read_sctlr() & SCTLR_C_BIT;
159#else
Soby Mathew523d6332015-01-08 18:02:19 +0000160 is_cached = read_sctlr_el3() & SCTLR_C_BIT;
Soby Mathew077ab542017-02-14 10:16:18 +0000161#endif
Soby Mathew523d6332015-01-08 18:02:19 +0000162
163 /* Get a ticket */
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100164 my_ticket = bakery_get_ticket(lock, me, is_cached);
Soby Mathew523d6332015-01-08 18:02:19 +0000165
166 /*
167 * Now that we got our ticket, compute our priority value, then compare
168 * with that of others, and proceed to acquire the lock
169 */
170 my_prio = PRIORITY(my_ticket, me);
171 for (they = 0; they < BAKERY_LOCK_MAX_CPUS; they++) {
172 if (me == they)
173 continue;
174
175 /*
176 * Get a reference to the other contender's bakery info and
177 * ensure that a stale copy is not read.
178 */
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100179 their_bakery_info = get_bakery_info(they, lock);
Soby Mathew523d6332015-01-08 18:02:19 +0000180 assert(their_bakery_info);
Soby Mathew523d6332015-01-08 18:02:19 +0000181
182 /* Wait for the contender to get their ticket */
Soby Mathewa0a897d2015-02-19 16:23:51 +0000183 do {
Soby Mathew523d6332015-01-08 18:02:19 +0000184 read_cache_op(their_bakery_info, is_cached);
185 their_bakery_data = their_bakery_info->lock_data;
Soby Mathewa0a897d2015-02-19 16:23:51 +0000186 } while (bakery_is_choosing(their_bakery_data));
Soby Mathew523d6332015-01-08 18:02:19 +0000187
188 /*
189 * If the other party is a contender, they'll have non-zero
190 * (valid) ticket value. If they do, compare priorities
191 */
192 their_ticket = bakery_ticket_number(their_bakery_data);
193 if (their_ticket && (PRIORITY(their_ticket, they) < my_prio)) {
194 /*
195 * They have higher priority (lower value). Wait for
196 * their ticket value to change (either release the lock
197 * to have it dropped to 0; or drop and probably content
198 * again for the same lock to have an even higher value)
199 */
200 do {
201 wfe();
202 read_cache_op(their_bakery_info, is_cached);
203 } while (their_ticket
204 == bakery_ticket_number(their_bakery_info->lock_data));
205 }
206 }
Soby Mathew156280c2015-02-20 16:04:17 +0000207 /* Lock acquired */
Soby Mathew523d6332015-01-08 18:02:19 +0000208}
209
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100210void bakery_lock_release(bakery_lock_t *lock)
Soby Mathew523d6332015-01-08 18:02:19 +0000211{
212 bakery_info_t *my_bakery_info;
Soby Mathew077ab542017-02-14 10:16:18 +0000213#ifdef AARCH32
214 unsigned int is_cached = read_sctlr() & SCTLR_C_BIT;
215#else
Soby Mathew523d6332015-01-08 18:02:19 +0000216 unsigned int is_cached = read_sctlr_el3() & SCTLR_C_BIT;
Soby Mathew077ab542017-02-14 10:16:18 +0000217#endif
Soby Mathew523d6332015-01-08 18:02:19 +0000218
Andrew Thoelkee466c9f2015-09-10 11:39:36 +0100219 my_bakery_info = get_bakery_info(plat_my_core_pos(), lock);
Soby Mathewf9baaa52016-11-14 17:19:35 +0000220
221 assert(is_lock_acquired(my_bakery_info, is_cached));
Soby Mathew156280c2015-02-20 16:04:17 +0000222
Soby Mathew523d6332015-01-08 18:02:19 +0000223 my_bakery_info->lock_data = 0;
224 write_cache_op(my_bakery_info, is_cached);
225 sev();
226}