mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-13 19:29:21 +08:00
rtems_bsd_mutex: SMP support via ISR locks
This commit is contained in:
parent
e5a017550a
commit
8ed1b181aa
@ -7,7 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014 embedded brains GmbH. All rights reserved.
|
* Copyright (c) 2014, 2015 embedded brains GmbH. All rights reserved.
|
||||||
*
|
*
|
||||||
* embedded brains GmbH
|
* embedded brains GmbH
|
||||||
* Dornierstr. 4
|
* Dornierstr. 4
|
||||||
@ -40,6 +40,7 @@
|
|||||||
#ifndef _RTEMS_BSD_MACHINE_RTEMS_BSD_MUTEX_H_
|
#ifndef _RTEMS_BSD_MACHINE_RTEMS_BSD_MUTEX_H_
|
||||||
#define _RTEMS_BSD_MACHINE_RTEMS_BSD_MUTEX_H_
|
#define _RTEMS_BSD_MACHINE_RTEMS_BSD_MUTEX_H_
|
||||||
|
|
||||||
|
#include <rtems/score/isrlock.h>
|
||||||
#include <rtems/score/rbtree.h>
|
#include <rtems/score/rbtree.h>
|
||||||
#include <rtems/score/thread.h>
|
#include <rtems/score/thread.h>
|
||||||
|
|
||||||
@ -48,6 +49,7 @@ extern "C" {
|
|||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
ISR_LOCK_MEMBER(lock)
|
||||||
Thread_Control *owner;
|
Thread_Control *owner;
|
||||||
int nest_level;
|
int nest_level;
|
||||||
RBTree_Control rivals;
|
RBTree_Control rivals;
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014 embedded brains GmbH. All rights reserved.
|
* Copyright (c) 2014, 2015 embedded brains GmbH. All rights reserved.
|
||||||
*
|
*
|
||||||
* embedded brains GmbH
|
* embedded brains GmbH
|
||||||
* Dornierstr. 4
|
* Dornierstr. 4
|
||||||
@ -47,9 +47,7 @@
|
|||||||
#include <rtems/bsd/sys/types.h>
|
#include <rtems/bsd/sys/types.h>
|
||||||
#include <rtems/bsd/sys/lock.h>
|
#include <rtems/bsd/sys/lock.h>
|
||||||
|
|
||||||
#include <rtems/score/isrlevel.h>
|
|
||||||
#include <rtems/score/threadimpl.h>
|
#include <rtems/score/threadimpl.h>
|
||||||
#include <rtems/score/threadqimpl.h>
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
@ -59,6 +57,7 @@ static inline void
|
|||||||
rtems_bsd_mutex_init(struct lock_object *lock, rtems_bsd_mutex *m,
|
rtems_bsd_mutex_init(struct lock_object *lock, rtems_bsd_mutex *m,
|
||||||
struct lock_class *class, const char *name, const char *type, int flags)
|
struct lock_class *class, const char *name, const char *type, int flags)
|
||||||
{
|
{
|
||||||
|
_ISR_lock_Initialize(&m->lock, name);
|
||||||
m->owner = NULL;
|
m->owner = NULL;
|
||||||
m->nest_level = 0;
|
m->nest_level = 0;
|
||||||
_RBTree_Initialize_empty(&m->rivals);
|
_RBTree_Initialize_empty(&m->rivals);
|
||||||
@ -67,27 +66,31 @@ rtems_bsd_mutex_init(struct lock_object *lock, rtems_bsd_mutex *m,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void rtems_bsd_mutex_lock_more(struct lock_object *lock, rtems_bsd_mutex *m,
|
void rtems_bsd_mutex_lock_more(struct lock_object *lock, rtems_bsd_mutex *m,
|
||||||
Thread_Control *owner, Thread_Control *executing, ISR_Level level);
|
Per_CPU_Control *cpu_self, Thread_Control *owner,
|
||||||
|
Thread_Control *executing, ISR_lock_Context *lock_context);
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
rtems_bsd_mutex_lock(struct lock_object *lock, rtems_bsd_mutex *m)
|
rtems_bsd_mutex_lock(struct lock_object *lock, rtems_bsd_mutex *m)
|
||||||
{
|
{
|
||||||
ISR_Level level;
|
ISR_lock_Context lock_context;
|
||||||
|
Per_CPU_Control *cpu_self;
|
||||||
Thread_Control *executing;
|
Thread_Control *executing;
|
||||||
Thread_Control *owner;
|
Thread_Control *owner;
|
||||||
|
|
||||||
_ISR_Disable(level);
|
_ISR_lock_ISR_disable_and_acquire(&m->lock, &lock_context);
|
||||||
|
|
||||||
owner = m->owner;
|
owner = m->owner;
|
||||||
executing = _Thread_Executing;
|
cpu_self = _Per_CPU_Get();
|
||||||
|
executing = cpu_self->executing;
|
||||||
|
|
||||||
if (__predict_true(owner == NULL)) {
|
if (__predict_true(owner == NULL)) {
|
||||||
m->owner = executing;
|
m->owner = executing;
|
||||||
++executing->resource_count;
|
++executing->resource_count;
|
||||||
|
|
||||||
_ISR_Enable(level);
|
_ISR_lock_Release_and_ISR_enable(&m->lock, &lock_context);
|
||||||
} else {
|
} else {
|
||||||
rtems_bsd_mutex_lock_more(lock, m, owner, executing, level);
|
rtems_bsd_mutex_lock_more(lock, m, cpu_self, owner, executing,
|
||||||
|
&lock_context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,11 +98,11 @@ static inline int
|
|||||||
rtems_bsd_mutex_trylock(struct lock_object *lock, rtems_bsd_mutex *m)
|
rtems_bsd_mutex_trylock(struct lock_object *lock, rtems_bsd_mutex *m)
|
||||||
{
|
{
|
||||||
int success;
|
int success;
|
||||||
ISR_Level level;
|
ISR_lock_Context lock_context;
|
||||||
Thread_Control *executing;
|
Thread_Control *executing;
|
||||||
Thread_Control *owner;
|
Thread_Control *owner;
|
||||||
|
|
||||||
_ISR_Disable(level);
|
_ISR_lock_ISR_disable_and_acquire(&m->lock, &lock_context);
|
||||||
|
|
||||||
owner = m->owner;
|
owner = m->owner;
|
||||||
executing = _Thread_Executing;
|
executing = _Thread_Executing;
|
||||||
@ -116,21 +119,21 @@ rtems_bsd_mutex_trylock(struct lock_object *lock, rtems_bsd_mutex *m)
|
|||||||
success = 0;
|
success = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
_ISR_Enable(level);
|
_ISR_lock_Release_and_ISR_enable(&m->lock, &lock_context);
|
||||||
|
|
||||||
return (success);
|
return (success);
|
||||||
}
|
}
|
||||||
|
|
||||||
void rtems_bsd_mutex_unlock_more(rtems_bsd_mutex *m, Thread_Control *owner,
|
void rtems_bsd_mutex_unlock_more(rtems_bsd_mutex *m, Thread_Control *owner,
|
||||||
int keep_priority, RBTree_Node *first, ISR_Level level);
|
int keep_priority, RBTree_Node *first, ISR_lock_Context *lock_context);
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
rtems_bsd_mutex_unlock(rtems_bsd_mutex *m)
|
rtems_bsd_mutex_unlock(rtems_bsd_mutex *m)
|
||||||
{
|
{
|
||||||
ISR_Level level;
|
ISR_lock_Context lock_context;
|
||||||
int nest_level;
|
int nest_level;
|
||||||
|
|
||||||
_ISR_Disable(level);
|
_ISR_lock_ISR_disable_and_acquire(&m->lock, &lock_context);
|
||||||
|
|
||||||
nest_level = m->nest_level;
|
nest_level = m->nest_level;
|
||||||
if (__predict_true(nest_level == 0)) {
|
if (__predict_true(nest_level == 0)) {
|
||||||
@ -138,24 +141,25 @@ rtems_bsd_mutex_unlock(rtems_bsd_mutex *m)
|
|||||||
Thread_Control *owner = m->owner;
|
Thread_Control *owner = m->owner;
|
||||||
int keep_priority;
|
int keep_priority;
|
||||||
|
|
||||||
|
BSD_ASSERT(owner == _Thread_Executing);
|
||||||
|
|
||||||
--owner->resource_count;
|
--owner->resource_count;
|
||||||
keep_priority = _Thread_Owns_resources(owner)
|
keep_priority = _Thread_Owns_resources(owner)
|
||||||
|| owner->real_priority == owner->current_priority;
|
|| owner->real_priority == owner->current_priority;
|
||||||
|
|
||||||
m->owner = NULL;
|
m->owner = NULL;
|
||||||
|
|
||||||
if (__predict_true(first == NULL && keep_priority
|
if (__predict_true(first == NULL && keep_priority)) {
|
||||||
&& owner == _Thread_Executing)) {
|
_ISR_lock_Release_and_ISR_enable(&m->lock, &lock_context);
|
||||||
_ISR_Enable(level);
|
|
||||||
} else {
|
} else {
|
||||||
rtems_bsd_mutex_unlock_more(m, owner, keep_priority,
|
rtems_bsd_mutex_unlock_more(m, owner, keep_priority,
|
||||||
first, level);
|
first, &lock_context);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
m->nest_level = nest_level - 1;
|
m->nest_level = nest_level - 1;
|
||||||
|
|
||||||
_ISR_Enable(level);
|
_ISR_lock_Release_and_ISR_enable(&m->lock, &lock_context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -183,6 +187,7 @@ rtems_bsd_mutex_destroy(struct lock_object *lock, rtems_bsd_mutex *m)
|
|||||||
rtems_bsd_mutex_unlock(m);
|
rtems_bsd_mutex_unlock(m);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_ISR_lock_Destroy(&m->lock);
|
||||||
lock_destroy(lock);
|
lock_destroy(lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014 embedded brains GmbH. All rights reserved.
|
* Copyright (c) 2014, 2015 embedded brains GmbH. All rights reserved.
|
||||||
*
|
*
|
||||||
* embedded brains GmbH
|
* embedded brains GmbH
|
||||||
* Dornierstr. 4
|
* Dornierstr. 4
|
||||||
@ -42,54 +42,92 @@
|
|||||||
|
|
||||||
#include <rtems/score/schedulerimpl.h>
|
#include <rtems/score/schedulerimpl.h>
|
||||||
#include <rtems/score/threaddispatch.h>
|
#include <rtems/score/threaddispatch.h>
|
||||||
|
#include <rtems/score/threadqimpl.h>
|
||||||
|
|
||||||
|
#define INTEND_TO_BLOCK \
|
||||||
|
(THREAD_WAIT_CLASS_OBJECT | THREAD_WAIT_STATE_INTEND_TO_BLOCK)
|
||||||
|
|
||||||
|
#define BLOCKED \
|
||||||
|
(THREAD_WAIT_CLASS_OBJECT | THREAD_WAIT_STATE_BLOCKED)
|
||||||
|
|
||||||
|
#define INTERRUPT_SATISFIED \
|
||||||
|
(THREAD_WAIT_CLASS_OBJECT | THREAD_WAIT_STATE_INTERRUPT_SATISFIED)
|
||||||
|
|
||||||
void
|
void
|
||||||
rtems_bsd_mutex_lock_more(struct lock_object *lock, rtems_bsd_mutex *m,
|
rtems_bsd_mutex_lock_more(struct lock_object *lock, rtems_bsd_mutex *m,
|
||||||
Thread_Control *owner, Thread_Control *executing, ISR_Level level)
|
Per_CPU_Control *cpu_self, Thread_Control *owner,
|
||||||
|
Thread_Control *executing, ISR_lock_Context *lock_context)
|
||||||
{
|
{
|
||||||
if (owner == executing) {
|
if (owner == executing) {
|
||||||
BSD_ASSERT(lock->lo_flags & LO_RECURSABLE);
|
BSD_ASSERT(lock->lo_flags & LO_RECURSABLE);
|
||||||
++m->nest_level;
|
++m->nest_level;
|
||||||
|
|
||||||
_ISR_Enable(level);
|
_ISR_lock_Release_and_ISR_enable(&m->lock, lock_context);
|
||||||
} else {
|
} else {
|
||||||
|
bool success;
|
||||||
|
|
||||||
_RBTree_Insert(&m->rivals, &executing->RBNode,
|
_RBTree_Insert(&m->rivals, &executing->RBNode,
|
||||||
_Thread_queue_Compare_priority, false);
|
_Thread_queue_Compare_priority, false);
|
||||||
++executing->resource_count;
|
++executing->resource_count;
|
||||||
|
|
||||||
_Thread_Disable_dispatch();
|
_Thread_Dispatch_disable_critical(cpu_self);
|
||||||
_ISR_Enable(level);
|
_Giant_Acquire(cpu_self);
|
||||||
|
|
||||||
|
/* Priority inheritance */
|
||||||
_Scheduler_Change_priority_if_higher(_Scheduler_Get(owner),
|
_Scheduler_Change_priority_if_higher(_Scheduler_Get(owner),
|
||||||
owner, executing->current_priority, false);
|
owner, executing->current_priority, false);
|
||||||
|
|
||||||
|
_Thread_Wait_flags_set(executing, INTEND_TO_BLOCK);
|
||||||
|
|
||||||
|
_ISR_lock_Release_and_ISR_enable(&m->lock, lock_context);
|
||||||
|
|
||||||
_Thread_Set_state(executing, STATES_WAITING_FOR_MUTEX);
|
_Thread_Set_state(executing, STATES_WAITING_FOR_MUTEX);
|
||||||
|
|
||||||
_Thread_Enable_dispatch();
|
success = _Thread_Wait_flags_try_change(executing,
|
||||||
|
INTEND_TO_BLOCK, BLOCKED);
|
||||||
|
if (!success) {
|
||||||
|
_Thread_Unblock(executing);
|
||||||
|
}
|
||||||
|
|
||||||
|
_Giant_Release(cpu_self);
|
||||||
|
_Thread_Dispatch_enable(cpu_self);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
rtems_bsd_mutex_unlock_more(rtems_bsd_mutex *m, Thread_Control *owner,
|
rtems_bsd_mutex_unlock_more(rtems_bsd_mutex *m, Thread_Control *owner,
|
||||||
int keep_priority, RBTree_Node *first, ISR_Level level)
|
int keep_priority, RBTree_Node *first, ISR_lock_Context *lock_context)
|
||||||
{
|
{
|
||||||
BSD_ASSERT(owner == _Thread_Executing);
|
|
||||||
|
|
||||||
if (first != NULL) {
|
if (first != NULL) {
|
||||||
Thread_Control *new_owner;
|
Thread_Control *new_owner;
|
||||||
|
bool success;
|
||||||
|
|
||||||
_RBTree_Extract(&m->rivals, first);
|
_RBTree_Extract(&m->rivals, first);
|
||||||
|
|
||||||
new_owner = THREAD_RBTREE_NODE_TO_THREAD(first);
|
new_owner = THREAD_RBTREE_NODE_TO_THREAD(first);
|
||||||
m->owner = new_owner;
|
m->owner = new_owner;
|
||||||
|
|
||||||
_Thread_Disable_dispatch();
|
success = _Thread_Wait_flags_try_change_critical(new_owner,
|
||||||
_ISR_Enable(level);
|
INTEND_TO_BLOCK, INTERRUPT_SATISFIED);
|
||||||
|
if (success) {
|
||||||
_Thread_Clear_state(new_owner, STATES_WAITING_FOR_MUTEX);
|
_ISR_lock_Release_and_ISR_enable(&m->lock,
|
||||||
|
lock_context);
|
||||||
_Thread_Enable_dispatch();
|
|
||||||
} else {
|
} else {
|
||||||
_ISR_Enable(level);
|
Per_CPU_Control *cpu_self;
|
||||||
|
|
||||||
|
cpu_self = _Per_CPU_Get();
|
||||||
|
_Thread_Dispatch_disable_critical(cpu_self);
|
||||||
|
_ISR_lock_Release_and_ISR_enable(&m->lock,
|
||||||
|
lock_context);
|
||||||
|
_Giant_Acquire(cpu_self);
|
||||||
|
|
||||||
|
_Thread_Unblock(new_owner);
|
||||||
|
|
||||||
|
_Giant_Release(cpu_self);
|
||||||
|
_Thread_Dispatch_enable(cpu_self);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
_ISR_lock_Release_and_ISR_enable(&m->lock, lock_context);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!keep_priority) {
|
if (!keep_priority) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user