1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * vlock.S - simple voting lock implementation for ARM
5 * Created by: Dave Martin, 2012-08-16
6 * Copyright: (C) 2012-2013 Linaro Limited
8 * This algorithm is described in more detail in
9 * Documentation/arm/vlocks.rst.
12 #include <linux/linkage.h>
15 /* Select different code if voting flags can fit in a single word. */
16 #if VLOCK_VOTING_SIZE > 4
24 @ voting lock for first-man coordination
26 .macro voting_begin rbase:req, rcpu:req, rscratch:req
28 strb \rscratch, [\rbase, \rcpu]
32 .macro voting_end rbase:req, rcpu:req, rscratch:req
35 strb \rscratch, [\rbase, \rcpu]
41 * The vlock structure must reside in Strongly-Ordered or Device memory.
42 * This implementation deliberately eliminates most of the barriers which
43 * would be required for other memory types, and assumes that independent
44 * writes to neighbouring locations within a cacheline do not interfere
48 @ r0: lock structure base
49 @ r1: CPU ID (0-based index within cluster)
51 add r1, r1, #VLOCK_VOTING_OFFSET
53 voting_begin r0, r1, r2
55 ldrb r2, [r0, #VLOCK_OWNER_OFFSET] @ check whether lock is held
56 cmp r2, #VLOCK_OWNER_NONE
57 bne trylock_fail @ fail if so
59 @ Control dependency implies strb not observable before previous ldrb.
61 strb r1, [r0, #VLOCK_OWNER_OFFSET] @ submit my vote
63 voting_end r0, r1, r2 @ implies DMB
65 @ Wait for the current round of voting to finish:
67 MANY( mov r3, #VLOCK_VOTING_OFFSET )
69 MANY( ldr r2, [r0, r3] )
70 FEW( ldr r2, [r0, #VLOCK_VOTING_OFFSET] )
74 MANY( add r3, r3, #4 )
75 MANY( cmp r3, #VLOCK_VOTING_OFFSET + VLOCK_VOTING_SIZE )
81 ldrb r2, [r0, #VLOCK_OWNER_OFFSET]
82 eor r0, r1, r2 @ zero if I won, else nonzero
87 mov r0, #1 @ nonzero indicates that I lost
89 ENDPROC(vlock_trylock)
91 @ r0: lock structure base
94 mov r1, #VLOCK_OWNER_NONE
95 strb r1, [r0, #VLOCK_OWNER_OFFSET]