qpc/source/qk_mutex.c
Quantum Leaps 33d17c2dbd 5.8.0
2016-11-30 18:14:20 -05:00

174 lines
5.4 KiB
C

/**
* @file
* @ingroup qk
* @brief QMutex_init(), QMutex_lock and QMutex_unlock() definitions.
* @cond
******************************************************************************
* Last updated for version 5.8.0
* Last updated on 2016-11-29
*
* 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 */
#include "qf_pkg.h" /* QF package-scope interface */
#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 */
/* protection against including this source file in a wrong project */
#ifndef qk_h
#error "Source file included in a project NOT based on the QK kernel"
#endif /* qk_h */
Q_DEFINE_THIS_MODULE("qk_mutex")
enum {
MUTEX_UNUSED = 0xFF
};
/****************************************************************************/
/**
* @description
* Initializes QK priority-ceiling mutex to the specified ceiling priority.
*
* @param[in,out] me pointer (see @ref oop)
* @param[in] prio ceiling priority of the mutex
*
* @note
* A mutex must be initialized before it can be locked or unlocked.
*
* @sa QMutex_lock(), QMutex_unlock()
*
* @usage
* The following example shows how to initialize, lock and unlock QK mutex:
* @include qk_mux.c
*/
void QMutex_init(QMutex * const me, uint_fast8_t prio) {
me->lockPrio = prio;
me->prevPrio = (uint_fast8_t)MUTEX_UNUSED;
}
/****************************************************************************/
/**
* @description
* This function locks the QK mutex.
*
* @param[in,out] me pointer (see @ref oop)
*
* @note
* A mutex must be initialized before it can be locked or unlocked.
*
* @note
* QMutex_lock() must be always followed by the corresponding
* QMutex_unlock().
*
* @sa QMutex_init(), QMutex_unlock()
*
* @usage
* The following example shows how to initialize, lock and unlock QK mutex:
* @include qk_mux.c
*/
void QMutex_lock(QMutex * const me) {
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
/** @pre scheduler cannot be locked from the ISR context
* and the mutex must be unused
*/
Q_REQUIRE_ID(700, (!QK_ISR_CONTEXT_())
&& (me->prevPrio == (uint_fast8_t)MUTEX_UNUSED));
me->prevPrio = QK_attr_.lockPrio; /* save the previous prio */
if (QK_attr_.lockPrio < me->lockPrio) { /* raising the lock prio? */
QK_attr_.lockPrio = me->lockPrio;
}
QS_BEGIN_NOCRIT_(QS_SCHED_LOCK, (void *)0, (void *)0)
QS_TIME_(); /* timestamp */
QS_2U8_((uint8_t)me->prevPrio, /* the previouis lock prio */
(uint8_t)QK_attr_.lockPrio); /* the new lock prio */
QS_END_NOCRIT_()
QF_CRIT_EXIT_();
}
/****************************************************************************/
/**
* @description
* This function unlocks the QK mutex.
*
* @param[in] me pointer (see @ref oop)
*
* @note
* A mutex must be initialized before it can be locked or unlocked.
*
* @note
* QMutex_unlock() must always follow the corresponding QMutex_lock().
*
* @sa QMutex_init(), QMutex_lock()
*
* @usage
* The following example shows how to initialize, lock and unlock QK mutex:
* @include qk_mux.c
*/
void QMutex_unlock(QMutex * const me) {
uint_fast8_t p;
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
/** @pre scheduler cannot be unlocked from the ISR context
* and the mutex must NOT be unused
*/
Q_REQUIRE_ID(800, (!QK_ISR_CONTEXT_())
&& (me->prevPrio != (uint_fast8_t)MUTEX_UNUSED));
QS_BEGIN_NOCRIT_(QS_SCHED_UNLOCK, (void *)0, (void *)0)
QS_TIME_(); /* timestamp */
QS_2U8_((uint8_t)me->prevPrio, /* the previouis lock priority */
(uint8_t)QK_attr_.lockPrio); /* the lock priority */
QS_END_NOCRIT_()
p = me->prevPrio;
me->prevPrio = (uint_fast8_t)MUTEX_UNUSED;
if (QK_attr_.lockPrio > p) {
QK_attr_.lockPrio = p; /* restore the previous lock prio */
if (QK_sched_() != (uint_fast8_t)0) { /* priority found? */
QK_activate_(); /* activate any unlocked AOs */
}
}
QF_CRIT_EXIT_();
}