[563] | 1 | /* |
---|
[603] | 2 | * remote_busylock.h: remote kernel busy-waiting lock definition. |
---|
[563] | 3 | * |
---|
| 4 | * Authors Alain Greiner (2016,2017,2018) |
---|
| 5 | * |
---|
| 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 7 | * |
---|
| 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with ALMOS-kernel; if not, write to the Free Software Foundation, |
---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
| 24 | #ifndef _REMOTE_BUSYLOCK_H_ |
---|
| 25 | #define _REMOTE_BUSYLOCK_H_ |
---|
| 26 | |
---|
| 27 | #include <kernel_config.h> |
---|
| 28 | #include <hal_kernel_types.h> |
---|
| 29 | #include <hal_shared_types.h> |
---|
| 30 | #include <xlist.h> |
---|
| 31 | |
---|
| 32 | /******************************************************************************************* |
---|
| 33 | * This synchronisation object sequencializes all concurrent read or write accesses to a |
---|
| 34 | * shared object located in any cluster, made by any thread(s) running in any cluster. |
---|
[603] | 35 | * It uses a busy waiting policy when the lock is taken by another thread, and should |
---|
[563] | 36 | * be used ro execute very short actions, such as basic allocators, or to protect |
---|
| 37 | * higher level synchronisation objects, such as remote_queuelock and remote_rwlock. |
---|
[603] | 38 | * |
---|
[563] | 39 | * WARNING: a thread cannot yield when it is owning a busylock (local or remote). |
---|
| 40 | * |
---|
| 41 | * - To acquire the lock, we use a ticket policy to avoid starvation: the calling thread |
---|
| 42 | * makes an atomic increment on a "ticket" allocator, and keep polling the "current" |
---|
| 43 | * value until current == ticket. |
---|
| 44 | |
---|
| 45 | * - To release the lock, the owner thread increments the "current" value, |
---|
| 46 | * decrements its busylocks counter. |
---|
| 47 | * |
---|
[603] | 48 | * - When a thread takes a busylock, it enters a critical section: the busylock_acquire() |
---|
[563] | 49 | * function disables the IRQs, takes the lock, increments the thread busylocks counter, |
---|
[603] | 50 | * save the SR in the lock descriptor and returns. |
---|
[563] | 51 | * |
---|
[603] | 52 | * - The busylock_release() function decrements the thread busylock counter, |
---|
| 53 | * restores the SR to exit the critical section, and returns |
---|
[563] | 54 | * |
---|
| 55 | * - If a thread owning a busylock (local or remote) tries to deschedule, the scheduler |
---|
| 56 | * signals a kernel panic. |
---|
| 57 | ******************************************************************************************/ |
---|
| 58 | |
---|
| 59 | /******************************************************************************************* |
---|
| 60 | * This structure defines a remote_busylock. |
---|
[603] | 61 | * - The <ticket> and <current> fields implement the ticket policy described above. |
---|
| 62 | * - The <type> and <xlist> fields are used for debug. The type defines the lock usage, |
---|
| 63 | * as detailed in the kernel_config.h file. |
---|
| 64 | * - The <save_sr> field is used to implement the critical section as decribed above. |
---|
[563] | 65 | ******************************************************************************************/ |
---|
| 66 | |
---|
| 67 | typedef struct remote_busylock_s |
---|
| 68 | { |
---|
| 69 | uint32_t ticket; /*! next free ticket index */ |
---|
| 70 | volatile uint32_t current; /*! current owner index */ |
---|
| 71 | uint32_t type; /*! lock type for debug */ |
---|
| 72 | reg_t save_sr; /*! SR value */ |
---|
| 73 | |
---|
| 74 | #if DEBUG_BUSYLOCK |
---|
| 75 | xlist_entry_t xlist; /*! member of list of locks taken by same thread */ |
---|
| 76 | #endif |
---|
| 77 | |
---|
| 78 | } |
---|
| 79 | remote_busylock_t; |
---|
| 80 | |
---|
| 81 | /******************************************************************************************* |
---|
| 82 | * This function initializes a remote busylock. |
---|
| 83 | ******************************************************************************************* |
---|
| 84 | * @ lock_xp : extended pointer on remote busylock. |
---|
| 85 | * @ type : lock type for debug. |
---|
| 86 | ******************************************************************************************/ |
---|
| 87 | void remote_busylock_init( xptr_t lock_xp, |
---|
| 88 | uint32_t type ); |
---|
| 89 | |
---|
| 90 | /******************************************************************************************* |
---|
| 91 | * This blocking function uses a busy waiting strategy to acquire a remote_busylock. |
---|
| 92 | * It makes an atomic increment on the "ticket" field to get a ticket value and increment |
---|
| 93 | * the ticket allocator. |
---|
| 94 | * Then it polls the "current" field until (current == ticket), and returns. |
---|
| 95 | ******************************************************************************************* |
---|
| 96 | * @ lock_xp : extended pointer on remote busylock |
---|
| 97 | ******************************************************************************************/ |
---|
| 98 | void remote_busylock_acquire( xptr_t lock_xp ); |
---|
| 99 | |
---|
| 100 | /******************************************************************************************* |
---|
| 101 | * This function releases a busylock by incrementing the "current field". |
---|
| 102 | ******************************************************************************************* |
---|
| 103 | * @ lock_xp : extended pointer on remote busylock |
---|
| 104 | ******************************************************************************************/ |
---|
| 105 | void remote_busylock_release( xptr_t lock_xp ); |
---|
| 106 | |
---|
| 107 | #endif /* _REMOTE_BUSYLOCK_H_ */ |
---|