xref: /rk3399_ARM-atf/lib/locks/bakery/bakery_lock_normal.c (revision 72e8f2456af54b75a0a1d92aadfce0b4bcde6ba1)
18c5fe0b5SSoby Mathew /*
2*4c700c15SGovindraj Raja  * Copyright (c) 2015-2020, Arm Limited and Contributors. All rights reserved.
3d439cea9SVarun Wadekar  * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
48c5fe0b5SSoby Mathew  *
582cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
68c5fe0b5SSoby Mathew  */
78c5fe0b5SSoby Mathew 
88c5fe0b5SSoby Mathew #include <assert.h>
98c5fe0b5SSoby Mathew #include <string.h>
1009d40e0eSAntonio Nino Diaz 
1109d40e0eSAntonio Nino Diaz #include <arch_helpers.h>
1209d40e0eSAntonio Nino Diaz #include <lib/bakery_lock.h>
1309d40e0eSAntonio Nino Diaz #include <lib/el3_runtime/cpu_data.h>
1409d40e0eSAntonio Nino Diaz #include <lib/utils_def.h>
1509d40e0eSAntonio Nino Diaz #include <plat/common/platform.h>
168c5fe0b5SSoby Mathew 
178c5fe0b5SSoby Mathew /*
188c5fe0b5SSoby Mathew  * Functions in this file implement Bakery Algorithm for mutual exclusion with the
198c5fe0b5SSoby Mathew  * bakery lock data structures in cacheable and Normal memory.
208c5fe0b5SSoby Mathew  *
218c5fe0b5SSoby Mathew  * ARM architecture offers a family of exclusive access instructions to
228c5fe0b5SSoby Mathew  * efficiently implement mutual exclusion with hardware support. However, as
238c5fe0b5SSoby Mathew  * well as depending on external hardware, these instructions have defined
248c5fe0b5SSoby Mathew  * behavior only on certain memory types (cacheable and Normal memory in
258c5fe0b5SSoby Mathew  * particular; see ARMv8 Architecture Reference Manual section B2.10). Use cases
268c5fe0b5SSoby Mathew  * in trusted firmware are such that mutual exclusion implementation cannot
278c5fe0b5SSoby Mathew  * expect that accesses to the lock have the specific type required by the
288c5fe0b5SSoby Mathew  * architecture for these primitives to function (for example, not all
298c5fe0b5SSoby Mathew  * contenders may have address translation enabled).
308c5fe0b5SSoby Mathew  *
318c5fe0b5SSoby Mathew  * This implementation does not use mutual exclusion primitives. It expects
328c5fe0b5SSoby Mathew  * memory regions where the locks reside to be cacheable and Normal.
338c5fe0b5SSoby Mathew  *
348c5fe0b5SSoby Mathew  * Note that the ARM architecture guarantees single-copy atomicity for aligned
358c5fe0b5SSoby Mathew  * accesses regardless of status of address translation.
368c5fe0b5SSoby Mathew  */
378c5fe0b5SSoby Mathew 
38ee7b35c4SAndrew Thoelke #ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
39ee7b35c4SAndrew Thoelke /*
40ee7b35c4SAndrew Thoelke  * Verify that the platform defined value for the per-cpu space for bakery locks is
41ee7b35c4SAndrew Thoelke  * a multiple of the cache line size, to prevent multiple CPUs writing to the same
42ee7b35c4SAndrew Thoelke  * bakery lock cache line
43ee7b35c4SAndrew Thoelke  *
44ee7b35c4SAndrew Thoelke  * Using this value, if provided, rather than the linker generated value results in
45ee7b35c4SAndrew Thoelke  * more efficient code
46ee7b35c4SAndrew Thoelke  */
479a90d720SElyes Haouas CASSERT((PLAT_PERCPU_BAKERY_LOCK_SIZE & (CACHE_WRITEBACK_GRANULE - 1)) == 0,
48ee7b35c4SAndrew Thoelke 	PLAT_PERCPU_BAKERY_LOCK_SIZE_not_cacheline_multiple);
49ee7b35c4SAndrew Thoelke #define PERCPU_BAKERY_LOCK_SIZE (PLAT_PERCPU_BAKERY_LOCK_SIZE)
50ee7b35c4SAndrew Thoelke #else
51ee7b35c4SAndrew Thoelke /*
52ee7b35c4SAndrew Thoelke  * Use the linker defined symbol which has evaluated the size reqiurement.
53ee7b35c4SAndrew Thoelke  * This is not as efficient as using a platform defined constant
54ee7b35c4SAndrew Thoelke  */
55596929b9SVarun Wadekar IMPORT_SYM(uintptr_t, __PERCPU_BAKERY_LOCK_START__, BAKERY_LOCK_START);
56596929b9SVarun Wadekar IMPORT_SYM(uintptr_t, __PERCPU_BAKERY_LOCK_END__, BAKERY_LOCK_END);
57596929b9SVarun Wadekar #define PERCPU_BAKERY_LOCK_SIZE (BAKERY_LOCK_END - BAKERY_LOCK_START)
58ee7b35c4SAndrew Thoelke #endif
598c5fe0b5SSoby Mathew 
get_bakery_info(unsigned int cpu_ix,bakery_lock_t * lock)60f8b30ca8SAntonio Nino Diaz static inline bakery_lock_t *get_bakery_info(unsigned int cpu_ix,
61f8b30ca8SAntonio Nino Diaz 					     bakery_lock_t *lock)
62f8b30ca8SAntonio Nino Diaz {
63f8b30ca8SAntonio Nino Diaz 	return (bakery_info_t *)((uintptr_t)lock +
64f8b30ca8SAntonio Nino Diaz 				cpu_ix * PERCPU_BAKERY_LOCK_SIZE);
65f8b30ca8SAntonio Nino Diaz }
668c5fe0b5SSoby Mathew 
write_cache_op(uintptr_t addr,bool cached)67f8b30ca8SAntonio Nino Diaz static inline void write_cache_op(uintptr_t addr, bool cached)
68f8b30ca8SAntonio Nino Diaz {
69f8b30ca8SAntonio Nino Diaz 	if (cached)
70f8b30ca8SAntonio Nino Diaz 		dccvac(addr);
71f8b30ca8SAntonio Nino Diaz 	else
72f8b30ca8SAntonio Nino Diaz 		dcivac(addr);
738c5fe0b5SSoby Mathew 
74f8b30ca8SAntonio Nino Diaz 	dsbish();
75f8b30ca8SAntonio Nino Diaz }
76f8b30ca8SAntonio Nino Diaz 
read_cache_op(uintptr_t addr,bool cached)77f8b30ca8SAntonio Nino Diaz static inline void read_cache_op(uintptr_t addr, bool cached)
78f8b30ca8SAntonio Nino Diaz {
79f8b30ca8SAntonio Nino Diaz 	if (cached)
80f8b30ca8SAntonio Nino Diaz 		dccivac(addr);
81d439cea9SVarun Wadekar 
82d439cea9SVarun Wadekar 	dmbish();
83f8b30ca8SAntonio Nino Diaz }
848c5fe0b5SSoby Mathew 
8595c12559SSoby Mathew /* Helper function to check if the lock is acquired */
is_lock_acquired(const bakery_info_t * my_bakery_info,bool is_cached)865a030ce4SOkash Khawaja static inline __unused bool is_lock_acquired(const bakery_info_t *my_bakery_info,
8711504163SMasahiro Yamada 				    bool is_cached)
8895c12559SSoby Mathew {
8995c12559SSoby Mathew 	/*
9095c12559SSoby Mathew 	 * Even though lock data is updated only by the owning cpu and
9195c12559SSoby Mathew 	 * appropriate cache maintenance operations are performed,
9295c12559SSoby Mathew 	 * if the previous update was done when the cpu was not participating
9395c12559SSoby Mathew 	 * in coherency, then there is a chance that cache maintenance
9495c12559SSoby Mathew 	 * operations were not propagated to all the caches in the system.
9595c12559SSoby Mathew 	 * Hence do a `read_cache_op()` prior to read.
9695c12559SSoby Mathew 	 */
97f8b30ca8SAntonio Nino Diaz 	read_cache_op((uintptr_t)my_bakery_info, is_cached);
98f8b30ca8SAntonio Nino Diaz 	return bakery_ticket_number(my_bakery_info->lock_data) != 0U;
9995c12559SSoby Mathew }
10095c12559SSoby Mathew 
bakery_get_ticket(bakery_lock_t * lock,unsigned int me,bool is_cached)101ee7b35c4SAndrew Thoelke static unsigned int bakery_get_ticket(bakery_lock_t *lock,
10211504163SMasahiro Yamada 				      unsigned int me, bool is_cached)
1038c5fe0b5SSoby Mathew {
1048c5fe0b5SSoby Mathew 	unsigned int my_ticket, their_ticket;
1058c5fe0b5SSoby Mathew 	unsigned int they;
1068c5fe0b5SSoby Mathew 	bakery_info_t *my_bakery_info, *their_bakery_info;
1078c5fe0b5SSoby Mathew 
1088c5fe0b5SSoby Mathew 	/*
1098c5fe0b5SSoby Mathew 	 * Obtain a reference to the bakery information for this cpu and ensure
1108c5fe0b5SSoby Mathew 	 * it is not NULL.
1118c5fe0b5SSoby Mathew 	 */
112ee7b35c4SAndrew Thoelke 	my_bakery_info = get_bakery_info(me, lock);
113f8b30ca8SAntonio Nino Diaz 	assert(my_bakery_info != NULL);
1148c5fe0b5SSoby Mathew 
11595c12559SSoby Mathew 	/* Prevent recursive acquisition.*/
11695c12559SSoby Mathew 	assert(!is_lock_acquired(my_bakery_info, is_cached));
117548579f5SSoby Mathew 
118548579f5SSoby Mathew 	/*
1198c5fe0b5SSoby Mathew 	 * Tell other contenders that we are through the bakery doorway i.e.
1208c5fe0b5SSoby Mathew 	 * going to allocate a ticket for this cpu.
1218c5fe0b5SSoby Mathew 	 */
122f8b30ca8SAntonio Nino Diaz 	my_ticket = 0U;
1238c5fe0b5SSoby Mathew 	my_bakery_info->lock_data = make_bakery_data(CHOOSING_TICKET, my_ticket);
1248c5fe0b5SSoby Mathew 
125f8b30ca8SAntonio Nino Diaz 	write_cache_op((uintptr_t)my_bakery_info, is_cached);
1268c5fe0b5SSoby Mathew 
1278c5fe0b5SSoby Mathew 	/*
1288c5fe0b5SSoby Mathew 	 * Iterate through the bakery information of each contender to allocate
1298c5fe0b5SSoby Mathew 	 * the highest ticket number for this cpu.
1308c5fe0b5SSoby Mathew 	 */
131f8b30ca8SAntonio Nino Diaz 	for (they = 0U; they < BAKERY_LOCK_MAX_CPUS; they++) {
1328c5fe0b5SSoby Mathew 		if (me == they)
1338c5fe0b5SSoby Mathew 			continue;
1348c5fe0b5SSoby Mathew 
1358c5fe0b5SSoby Mathew 		/*
1368c5fe0b5SSoby Mathew 		 * Get a reference to the other contender's bakery info and
1378c5fe0b5SSoby Mathew 		 * ensure that a stale copy is not read.
1388c5fe0b5SSoby Mathew 		 */
139ee7b35c4SAndrew Thoelke 		their_bakery_info = get_bakery_info(they, lock);
140f8b30ca8SAntonio Nino Diaz 		assert(their_bakery_info != NULL);
1418c5fe0b5SSoby Mathew 
142f8b30ca8SAntonio Nino Diaz 		read_cache_op((uintptr_t)their_bakery_info, is_cached);
1438c5fe0b5SSoby Mathew 
1448c5fe0b5SSoby Mathew 		/*
1458c5fe0b5SSoby Mathew 		 * Update this cpu's ticket number if a higher ticket number is
1468c5fe0b5SSoby Mathew 		 * seen
1478c5fe0b5SSoby Mathew 		 */
1488c5fe0b5SSoby Mathew 		their_ticket = bakery_ticket_number(their_bakery_info->lock_data);
1498c5fe0b5SSoby Mathew 		if (their_ticket > my_ticket)
1508c5fe0b5SSoby Mathew 			my_ticket = their_ticket;
1518c5fe0b5SSoby Mathew 	}
1528c5fe0b5SSoby Mathew 
1538c5fe0b5SSoby Mathew 	/*
1548c5fe0b5SSoby Mathew 	 * Compute ticket; then signal to other contenders waiting for us to
1558c5fe0b5SSoby Mathew 	 * finish calculating our ticket value that we're done
1568c5fe0b5SSoby Mathew 	 */
1578c5fe0b5SSoby Mathew 	++my_ticket;
1581c9573a1SSoby Mathew 	my_bakery_info->lock_data = make_bakery_data(CHOSEN_TICKET, my_ticket);
1598c5fe0b5SSoby Mathew 
160f8b30ca8SAntonio Nino Diaz 	write_cache_op((uintptr_t)my_bakery_info, is_cached);
1618c5fe0b5SSoby Mathew 
1628c5fe0b5SSoby Mathew 	return my_ticket;
1638c5fe0b5SSoby Mathew }
1648c5fe0b5SSoby Mathew 
bakery_lock_get(bakery_lock_t * lock)165ee7b35c4SAndrew Thoelke void bakery_lock_get(bakery_lock_t *lock)
1668c5fe0b5SSoby Mathew {
16711504163SMasahiro Yamada 	unsigned int they, me;
1688c5fe0b5SSoby Mathew 	unsigned int my_ticket, my_prio, their_ticket;
1698c5fe0b5SSoby Mathew 	bakery_info_t *their_bakery_info;
1701c9573a1SSoby Mathew 	unsigned int their_bakery_data;
17111504163SMasahiro Yamada 	bool is_cached;
1728c5fe0b5SSoby Mathew 
17385a181ceSSoby Mathew 	me = plat_my_core_pos();
17411504163SMasahiro Yamada 	is_cached = is_dcache_enabled();
1758c5fe0b5SSoby Mathew 
1768c5fe0b5SSoby Mathew 	/* Get a ticket */
177ee7b35c4SAndrew Thoelke 	my_ticket = bakery_get_ticket(lock, me, is_cached);
1788c5fe0b5SSoby Mathew 
1798c5fe0b5SSoby Mathew 	/*
1808c5fe0b5SSoby Mathew 	 * Now that we got our ticket, compute our priority value, then compare
1818c5fe0b5SSoby Mathew 	 * with that of others, and proceed to acquire the lock
1828c5fe0b5SSoby Mathew 	 */
183f8b30ca8SAntonio Nino Diaz 	my_prio = bakery_get_priority(my_ticket, me);
184f8b30ca8SAntonio Nino Diaz 	for (they = 0U; they < BAKERY_LOCK_MAX_CPUS; they++) {
1858c5fe0b5SSoby Mathew 		if (me == they)
1868c5fe0b5SSoby Mathew 			continue;
1878c5fe0b5SSoby Mathew 
1888c5fe0b5SSoby Mathew 		/*
1898c5fe0b5SSoby Mathew 		 * Get a reference to the other contender's bakery info and
1908c5fe0b5SSoby Mathew 		 * ensure that a stale copy is not read.
1918c5fe0b5SSoby Mathew 		 */
192ee7b35c4SAndrew Thoelke 		their_bakery_info = get_bakery_info(they, lock);
193f8b30ca8SAntonio Nino Diaz 		assert(their_bakery_info != NULL);
1948c5fe0b5SSoby Mathew 
1958c5fe0b5SSoby Mathew 		/* Wait for the contender to get their ticket */
1961c9573a1SSoby Mathew 		do {
197f8b30ca8SAntonio Nino Diaz 			read_cache_op((uintptr_t)their_bakery_info, is_cached);
1988c5fe0b5SSoby Mathew 			their_bakery_data = their_bakery_info->lock_data;
1991c9573a1SSoby Mathew 		} while (bakery_is_choosing(their_bakery_data));
2008c5fe0b5SSoby Mathew 
2018c5fe0b5SSoby Mathew 		/*
2028c5fe0b5SSoby Mathew 		 * If the other party is a contender, they'll have non-zero
2038c5fe0b5SSoby Mathew 		 * (valid) ticket value. If they do, compare priorities
2048c5fe0b5SSoby Mathew 		 */
2058c5fe0b5SSoby Mathew 		their_ticket = bakery_ticket_number(their_bakery_data);
206f8b30ca8SAntonio Nino Diaz 		if (their_ticket && (bakery_get_priority(their_ticket, they) < my_prio)) {
2078c5fe0b5SSoby Mathew 			/*
2088c5fe0b5SSoby Mathew 			 * They have higher priority (lower value). Wait for
2098c5fe0b5SSoby Mathew 			 * their ticket value to change (either release the lock
2108c5fe0b5SSoby Mathew 			 * to have it dropped to 0; or drop and probably content
2118c5fe0b5SSoby Mathew 			 * again for the same lock to have an even higher value)
2128c5fe0b5SSoby Mathew 			 */
2138c5fe0b5SSoby Mathew 			do {
2148c5fe0b5SSoby Mathew 				wfe();
215f8b30ca8SAntonio Nino Diaz 				read_cache_op((uintptr_t)their_bakery_info, is_cached);
2168c5fe0b5SSoby Mathew 			} while (their_ticket
2178c5fe0b5SSoby Mathew 				== bakery_ticket_number(their_bakery_info->lock_data));
2188c5fe0b5SSoby Mathew 		}
2198c5fe0b5SSoby Mathew 	}
22024dc9709SJeenu Viswambharan 
22124dc9709SJeenu Viswambharan 	/*
222c0018913SRaghu Krishnamurthy 	 * Lock acquired. Ensure that any reads and writes from a shared
223c0018913SRaghu Krishnamurthy 	 * resource in the critical section read/write values after the lock is
224c0018913SRaghu Krishnamurthy 	 * acquired.
22524dc9709SJeenu Viswambharan 	 */
226c0018913SRaghu Krishnamurthy 	dmbish();
2278c5fe0b5SSoby Mathew }
2288c5fe0b5SSoby Mathew 
bakery_lock_release(bakery_lock_t * lock)229ee7b35c4SAndrew Thoelke void bakery_lock_release(bakery_lock_t *lock)
2308c5fe0b5SSoby Mathew {
2318c5fe0b5SSoby Mathew 	bakery_info_t *my_bakery_info;
23211504163SMasahiro Yamada 	bool is_cached = is_dcache_enabled();
2338c5fe0b5SSoby Mathew 
234ee7b35c4SAndrew Thoelke 	my_bakery_info = get_bakery_info(plat_my_core_pos(), lock);
23595c12559SSoby Mathew 
23695c12559SSoby Mathew 	assert(is_lock_acquired(my_bakery_info, is_cached));
237548579f5SSoby Mathew 
23824dc9709SJeenu Viswambharan 	/*
23924dc9709SJeenu Viswambharan 	 * Ensure that other observers see any stores in the critical section
240c0018913SRaghu Krishnamurthy 	 * before releasing the lock. Also ensure all loads in the critical
241c0018913SRaghu Krishnamurthy 	 * section are complete before releasing the lock. Release the lock by
242c0018913SRaghu Krishnamurthy 	 * resetting ticket. Then signal other waiting contenders.
24324dc9709SJeenu Viswambharan 	 */
244c0018913SRaghu Krishnamurthy 	dmbish();
245f8b30ca8SAntonio Nino Diaz 	my_bakery_info->lock_data = 0U;
246f8b30ca8SAntonio Nino Diaz 	write_cache_op((uintptr_t)my_bakery_info, is_cached);
247c0018913SRaghu Krishnamurthy 
248c0018913SRaghu Krishnamurthy 	/* This sev is ordered by the dsbish in write_cahce_op */
2498c5fe0b5SSoby Mathew 	sev();
2508c5fe0b5SSoby Mathew }
251