qpc/source/qxk_mutex.c

189 lines
5.9 KiB
C
Raw Normal View History

2015-12-24 14:33:20 -05:00
/**
* @file
2016-09-23 12:08:21 -04:00
* @ingroup qxk
* @brief QXMutex_init(), QXMutex_lock and QXMutex_unlock() definitions.
2015-12-24 14:33:20 -05:00
* @cond
******************************************************************************
2016-09-23 12:08:21 -04:00
* Last updated for version 5.7.1
* Last updated on 2016-09-14
2015-12-24 14:33:20 -05:00
*
* Q u a n t u m L e a P s
* ---------------------------
* innovating embedded systems
*
* Copyright (C) Quantum Leaps, LLC. All rights reserved.
*
* This program is open source software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alternatively, this program may be distributed and modified under the
* terms of Quantum Leaps commercial licenses, which expressly supersede
* the GNU General Public License and are specifically designed for
* licensees interested in retaining the proprietary status of their code.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Contact information:
* http://www.state-machine.com
* mailto:info@state-machine.com
******************************************************************************
* @endcond
*/
#define QP_IMPL /* this is QP implementation */
#include "qf_port.h" /* QF port */
2015-12-31 14:55:40 -05:00
#include "qxk_pkg.h" /* QXK package-scope interface */
2015-12-24 14:33:20 -05:00
#include "qassert.h" /* QP embedded systems-friendly assertions */
#ifdef Q_SPY /* QS software tracing enabled? */
#include "qs_port.h" /* include QS port */
#else
#include "qs_dummy.h" /* disable the QS software tracing */
#endif /* Q_SPY */
2015-12-31 14:55:40 -05:00
/* protection against including this source file in a wrong project */
#ifndef qxk_h
#error "Source file included in a project NOT based on the QXK kernel"
#endif /* qxk_h */
2015-12-24 14:33:20 -05:00
Q_DEFINE_THIS_MODULE("qxk_mutex")
2016-04-01 10:02:43 -04:00
enum {
MUTEX_UNUSED = 0xFF
};
2015-12-24 14:33:20 -05:00
/****************************************************************************/
/**
* @description
2016-03-30 18:50:33 -04:00
* Initializes QXK priority-ceiling mutex to the specified ceiling priority.
2015-12-24 14:33:20 -05:00
*
* @param[in,out] me pointer (see @ref oop)
2016-03-30 18:50:33 -04:00
* @param[in] prio ceiling priority of the mutex
2015-12-24 14:33:20 -05:00
*
2016-03-30 18:50:33 -04:00
* @note
* A mutex must be initialized before it can be locked or unlocked.
*
* @sa QXMutex_lock(), QXMutex_unlock()
2015-12-24 14:33:20 -05:00
*
* @usage
2016-04-01 10:02:43 -04:00
* The following example shows how to initialize, lock and unlock QXK mutex:
2015-12-24 14:33:20 -05:00
* @include qxk_mux.c
*/
2016-03-30 18:50:33 -04:00
void QXMutex_init(QXMutex * const me, uint_fast8_t prio) {
me->lockPrio = prio;
2016-04-01 10:02:43 -04:00
me->prevPrio = (uint_fast8_t)MUTEX_UNUSED;
2015-12-24 14:33:20 -05:00
}
/****************************************************************************/
/**
* @description
2016-03-30 18:50:33 -04:00
* This function locks the QXK mutex.
2015-12-24 14:33:20 -05:00
*
* @param[in,out] me pointer (see @ref oop)
*
2016-03-30 18:50:33 -04:00
* @note
* A mutex must be initialized before it can be locked or unlocked.
*
* @note
* QXMutex_lock() must be always followed by the corresponding
* QXMutex_unlock().
*
* @attention
* A thread holding a mutex __cannot block__.
*
* @sa QXMutex_init(), QXMutex_unlock()
2015-12-24 14:33:20 -05:00
*
* @usage
2016-04-01 10:02:43 -04:00
* The following example shows how to initialize, lock and unlock QXK mutex:
2015-12-24 14:33:20 -05:00
* @include qxk_mux.c
*/
void QXMutex_lock(QXMutex * const me) {
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
2016-04-01 10:02:43 -04:00
/** @pre scheduler cannot be locked from the ISR context
* and the mutex must be unused
*/
Q_REQUIRE_ID(700, (!QXK_ISR_CONTEXT_())
&& (me->prevPrio == (uint_fast8_t)MUTEX_UNUSED));
2016-03-30 18:50:33 -04:00
me->prevPrio = QXK_attr_.lockPrio; /* save previous lock prio */
me->prevHolder = QXK_attr_.lockHolder; /* save previous lock holder */
if (QXK_attr_.lockPrio < me->lockPrio) { /* raising the lock prio? */
QXK_attr_.lockPrio = me->lockPrio;
2015-12-24 14:33:20 -05:00
}
2016-09-23 12:08:21 -04:00
if (QXK_attr_.curr != (void *)0) {
QXK_attr_.lockHolder = ((QMActive volatile *)QXK_attr_.curr)->prio;
}
else {
QXK_attr_.lockHolder = (uint_fast8_t)0;
}
2016-03-30 18:50:33 -04:00
QS_BEGIN_NOCRIT_(QS_SCHED_LOCK, (void *)0, (void *)0)
QS_TIME_(); /* timestamp */
2016-09-23 12:08:21 -04:00
QS_2U8_((uint8_t)me->prevPrio, /* the previouis lock prio */
(uint8_t)QXK_attr_.lockPrio); /* the new lock prio */
2016-03-30 18:50:33 -04:00
QS_END_NOCRIT_()
2015-12-24 14:33:20 -05:00
QF_CRIT_EXIT_();
}
/****************************************************************************/
/**
* @description
2016-03-30 18:50:33 -04:00
* This function unlocks the QXK mutex.
2015-12-24 14:33:20 -05:00
*
2016-03-30 18:50:33 -04:00
* @param[in] me pointer (see @ref oop)
*
* @note
* A mutex must be initialized before it can be locked or unlocked.
*
* @note
* QXMutex_unlock() must always follow the corresponding QXMutex_lock().
2015-12-24 14:33:20 -05:00
*
2016-03-30 18:50:33 -04:00
* @sa QXMutex_init(), QXMutex_lock()
2015-12-24 14:33:20 -05:00
*
* @usage
2016-04-01 10:02:43 -04:00
* The following example shows how to initialize, lock and unlock QXK mutex:
2015-12-24 14:33:20 -05:00
* @include qxk_mux.c
*/
2016-04-01 10:02:43 -04:00
void QXMutex_unlock(QXMutex * const me) {
2016-03-30 18:50:33 -04:00
uint_fast8_t p;
2015-12-24 14:33:20 -05:00
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
2016-04-01 10:02:43 -04:00
/** @pre scheduler cannot be unlocked from the ISR context
* and the mutex must NOT be unused
*/
Q_REQUIRE_ID(800, (!QXK_ISR_CONTEXT_())
&& (me->prevPrio != (uint_fast8_t)MUTEX_UNUSED));
2015-12-24 14:33:20 -05:00
2016-09-23 12:08:21 -04:00
p = me->prevPrio;
2016-04-01 10:02:43 -04:00
me->prevPrio = (uint_fast8_t)MUTEX_UNUSED;
2016-09-23 12:08:21 -04:00
QXK_attr_.lockHolder = me->prevHolder; /* restore previous lock holder */
2015-12-24 14:33:20 -05:00
2016-03-30 18:50:33 -04:00
QS_BEGIN_NOCRIT_(QS_SCHED_UNLOCK, (void *)0, (void *)0)
QS_TIME_(); /* timestamp */
2016-09-23 12:08:21 -04:00
QS_2U8_((uint8_t)me->prevPrio, /* the previouis lock priority */
(uint8_t)QXK_attr_.lockPrio); /* the lock priority */
2016-03-30 18:50:33 -04:00
QS_END_NOCRIT_()
2015-12-24 14:33:20 -05:00
2016-09-23 12:08:21 -04:00
2016-03-30 18:50:33 -04:00
if (QXK_attr_.lockPrio > p) {
QXK_attr_.lockPrio = p; /* restore the previous lock prio */
2016-09-23 12:08:21 -04:00
/* find the highest-prio AO ready to run */
if (QXK_sched_() != (uint_fast8_t)0) { /* priority found? */
QXK_activate_(); /* activate any unlocked AOs */
2015-12-24 14:33:20 -05:00
}
}
QF_CRIT_EXIT_();
}