1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2019 Arm Limited
5 #ifndef _RTE_TICKETLOCK_H_
6 #define _RTE_TICKETLOCK_H_
13 * This file defines an API for ticket locks, which give each waiting
14 * thread a ticket and take the lock one by one, first come, first
17 * All locks must be initialised before use, and only initialised once.
25 #include <rte_common.h>
26 #include <rte_lcore.h>
27 #include <rte_pause.h>
30 * The rte_ticketlock_t type.
41 * A static ticketlock initializer.
43 #define RTE_TICKETLOCK_INITIALIZER { 0 }
46 * Initialize the ticketlock to an unlocked state.
49 * A pointer to the ticketlock.
53 rte_ticketlock_init(rte_ticketlock_t *tl)
55 __atomic_store_n(&tl->tickets, 0, __ATOMIC_RELAXED);
59 * Take the ticketlock.
62 * A pointer to the ticketlock.
66 rte_ticketlock_lock(rte_ticketlock_t *tl)
68 uint16_t me = __atomic_fetch_add(&tl->s.next, 1, __ATOMIC_RELAXED);
69 while (__atomic_load_n(&tl->s.current, __ATOMIC_ACQUIRE) != me)
74 * Release the ticketlock.
77 * A pointer to the ticketlock.
81 rte_ticketlock_unlock(rte_ticketlock_t *tl)
83 uint16_t i = __atomic_load_n(&tl->s.current, __ATOMIC_RELAXED);
84 __atomic_store_n(&tl->s.current, i + 1, __ATOMIC_RELEASE);
88 * Try to take the lock.
91 * A pointer to the ticketlock.
93 * 1 if the lock is successfully taken; 0 otherwise.
97 rte_ticketlock_trylock(rte_ticketlock_t *tl)
99 rte_ticketlock_t old, new;
100 old.tickets = __atomic_load_n(&tl->tickets, __ATOMIC_RELAXED);
101 new.tickets = old.tickets;
103 if (old.s.next == old.s.current) {
104 if (__atomic_compare_exchange_n(&tl->tickets, &old.tickets,
105 new.tickets, 0, __ATOMIC_ACQUIRE, __ATOMIC_RELAXED))
113 * Test if the lock is taken.
116 * A pointer to the ticketlock.
118 * 1 if the lock is currently taken; 0 otherwise.
122 rte_ticketlock_is_locked(rte_ticketlock_t *tl)
124 rte_ticketlock_t tic;
125 tic.tickets = __atomic_load_n(&tl->tickets, __ATOMIC_ACQUIRE);
126 return (tic.s.current != tic.s.next);
130 * The rte_ticketlock_recursive_t type.
132 #define TICKET_LOCK_INVALID_ID -1
135 rte_ticketlock_t tl; /**< the actual ticketlock */
136 int user; /**< core id using lock, TICKET_LOCK_INVALID_ID for unused */
137 unsigned int count; /**< count of time this lock has been called */
138 } rte_ticketlock_recursive_t;
141 * A static recursive ticketlock initializer.
143 #define RTE_TICKETLOCK_RECURSIVE_INITIALIZER {RTE_TICKETLOCK_INITIALIZER, \
144 TICKET_LOCK_INVALID_ID, 0}
147 * Initialize the recursive ticketlock to an unlocked state.
150 * A pointer to the recursive ticketlock.
154 rte_ticketlock_recursive_init(rte_ticketlock_recursive_t *tlr)
156 rte_ticketlock_init(&tlr->tl);
157 __atomic_store_n(&tlr->user, TICKET_LOCK_INVALID_ID, __ATOMIC_RELAXED);
162 * Take the recursive ticketlock.
165 * A pointer to the recursive ticketlock.
169 rte_ticketlock_recursive_lock(rte_ticketlock_recursive_t *tlr)
171 int id = rte_gettid();
173 if (__atomic_load_n(&tlr->user, __ATOMIC_RELAXED) != id) {
174 rte_ticketlock_lock(&tlr->tl);
175 __atomic_store_n(&tlr->user, id, __ATOMIC_RELAXED);
181 * Release the recursive ticketlock.
184 * A pointer to the recursive ticketlock.
188 rte_ticketlock_recursive_unlock(rte_ticketlock_recursive_t *tlr)
190 if (--(tlr->count) == 0) {
191 __atomic_store_n(&tlr->user, TICKET_LOCK_INVALID_ID,
193 rte_ticketlock_unlock(&tlr->tl);
198 * Try to take the recursive lock.
201 * A pointer to the recursive ticketlock.
203 * 1 if the lock is successfully taken; 0 otherwise.
207 rte_ticketlock_recursive_trylock(rte_ticketlock_recursive_t *tlr)
209 int id = rte_gettid();
211 if (__atomic_load_n(&tlr->user, __ATOMIC_RELAXED) != id) {
212 if (rte_ticketlock_trylock(&tlr->tl) == 0)
214 __atomic_store_n(&tlr->user, id, __ATOMIC_RELAXED);
224 #endif /* _RTE_TICKETLOCK_H_ */