qpc/source/qk_mutex.c

174 lines
5.4 KiB
C
Raw Normal View History

2014-04-06 11:43:13 -04:00
/**
2015-04-28 13:45:35 -04:00
* @file
* @ingroup qk
2015-12-24 14:33:20 -05:00
* @brief QMutex_init(), QMutex_lock and QMutex_unlock() definitions.
2015-04-28 13:45:35 -04:00
* @cond
2014-04-06 11:43:13 -04:00
******************************************************************************
2016-11-30 18:14:20 -05:00
* Last updated for version 5.8.0
* Last updated on 2016-11-29
2012-08-14 18:07:04 -04:00
*
* Q u a n t u m L e a P s
* ---------------------------
* innovating embedded systems
*
2015-12-24 14:33:20 -05:00
* Copyright (C) Quantum Leaps, LLC. All rights reserved.
2012-08-14 18:07:04 -04:00
*
* 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
2012-08-14 18:07:04 -04:00
* (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:
2015-12-24 14:33:20 -05:00
* http://www.state-machine.com
* mailto:info@state-machine.com
2014-04-06 11:43:13 -04:00
******************************************************************************
2015-04-28 13:45:35 -04:00
* @endcond
2012-08-14 18:07:04 -04:00
*/
2015-04-28 13:45:35 -04:00
#define QP_IMPL /* this is QP implementation */
#include "qf_port.h" /* QF port */
2016-11-30 18:14:20 -05:00
#include "qf_pkg.h" /* QF package-scope interface */
2015-12-24 14:33:20 -05:00
#include "qassert.h" /* QP embedded systems-friendly assertions */
2014-04-06 11:43:13 -04:00
#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 */
2012-08-14 18:07:04 -04:00
2015-12-31 14:55:40 -05:00
/* 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 */
2015-12-24 14:33:20 -05:00
Q_DEFINE_THIS_MODULE("qk_mutex")
2012-08-14 18:07:04 -04:00
2016-04-01 10:02:43 -04:00
enum {
MUTEX_UNUSED = 0xFF
};
2014-04-06 11:43:13 -04:00
/****************************************************************************/
/**
2015-04-28 13:45:35 -04:00
* @description
2016-03-30 18:50:33 -04:00
* Initializes QK priority-ceiling mutex to the specified ceiling priority.
2014-04-06 11:43:13 -04:00
*
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
2014-04-06 11:43:13 -04:00
*
2016-03-30 18:50:33 -04:00
* @note
* A mutex must be initialized before it can be locked or unlocked.
*
* @sa QMutex_lock(), QMutex_unlock()
2014-04-06 11:43:13 -04:00
*
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 QK mutex:
2015-12-24 14:33:20 -05:00
* @include qk_mux.c
*/
2016-03-30 18:50:33 -04:00
void QMutex_init(QMutex * 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 QK 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
* QMutex_lock() must be always followed by the corresponding
* QMutex_unlock().
*
* @sa QMutex_init(), QMutex_unlock()
2014-04-06 11:43:13 -04:00
*
2015-04-28 13:45:35 -04:00
* @usage
2016-04-01 10:02:43 -04:00
* The following example shows how to initialize, lock and unlock QK mutex:
2015-04-28 13:45:35 -04:00
* @include qk_mux.c
2014-04-06 11:43:13 -04:00
*/
2015-12-24 14:33:20 -05:00
void QMutex_lock(QMutex * const me) {
2012-08-14 18:07:04 -04:00
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
2015-12-24 14:33:20 -05:00
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, (!QK_ISR_CONTEXT_())
&& (me->prevPrio == (uint_fast8_t)MUTEX_UNUSED));
2015-12-24 14:33:20 -05:00
2016-09-01 11:57:27 -04:00
me->prevPrio = QK_attr_.lockPrio; /* save the previous prio */
if (QK_attr_.lockPrio < me->lockPrio) { /* raising the lock prio? */
QK_attr_.lockPrio = me->lockPrio;
2016-03-30 18:50:33 -04:00
}
2012-08-14 18:07:04 -04:00
2016-03-30 18:50:33 -04:00
QS_BEGIN_NOCRIT_(QS_SCHED_LOCK, (void *)0, (void *)0)
QS_TIME_(); /* timestamp */
QS_2U8_((uint8_t)me->prevPrio, /* the previouis lock prio */
2016-09-01 11:57:27 -04:00
(uint8_t)QK_attr_.lockPrio); /* the new lock prio */
2016-03-30 18:50:33 -04:00
QS_END_NOCRIT_()
2012-08-14 18:07:04 -04:00
QF_CRIT_EXIT_();
}
2014-04-06 11:43:13 -04:00
/****************************************************************************/
/**
2015-04-28 13:45:35 -04:00
* @description
2016-03-30 18:50:33 -04:00
* This function unlocks the QK mutex.
2014-04-06 11:43:13 -04:00
*
2016-03-30 18:50:33 -04:00
* @param[in] me pointer (see @ref oop)
2014-04-06 11:43:13 -04:00
*
2016-03-30 18:50:33 -04:00
* @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()
2014-04-06 11:43:13 -04:00
*
2015-04-28 13:45:35 -04:00
* @usage
2016-04-01 10:02:43 -04:00
* The following example shows how to initialize, lock and unlock QK mutex:
2015-04-28 13:45:35 -04:00
* @include qk_mux.c
2014-04-06 11:43:13 -04:00
*/
2016-04-01 10:02:43 -04:00
void QMutex_unlock(QMutex * const me) {
2016-03-30 18:50:33 -04:00
uint_fast8_t p;
2012-08-14 18:07:04 -04:00
QF_CRIT_STAT_
QF_CRIT_ENTRY_();
2015-12-24 14:33:20 -05:00
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, (!QK_ISR_CONTEXT_())
&& (me->prevPrio != (uint_fast8_t)MUTEX_UNUSED));
2016-03-30 18:50:33 -04:00
QS_BEGIN_NOCRIT_(QS_SCHED_UNLOCK, (void *)0, (void *)0)
QS_TIME_(); /* timestamp */
QS_2U8_((uint8_t)me->prevPrio, /* the previouis lock priority */
2016-09-01 11:57:27 -04:00
(uint8_t)QK_attr_.lockPrio); /* the lock priority */
2016-03-30 18:50:33 -04:00
QS_END_NOCRIT_()
p = me->prevPrio;
2016-04-01 10:02:43 -04:00
me->prevPrio = (uint_fast8_t)MUTEX_UNUSED;
2016-09-01 11:57:27 -04:00
if (QK_attr_.lockPrio > p) {
QK_attr_.lockPrio = p; /* restore the previous lock prio */
2016-09-29 18:08:33 -04:00
if (QK_sched_() != (uint_fast8_t)0) { /* priority found? */
QK_activate_(); /* activate any unlocked AOs */
2012-08-14 18:07:04 -04:00
}
}
QF_CRIT_EXIT_();
}