qpc/include/qk.h

189 lines
6.2 KiB
C
Raw Normal View History

2014-04-06 11:43:13 -04:00
/**
2015-04-28 13:45:35 -04:00
* @file
* @brief QK/C (preemptive non-blocking kernel) platform-independent
* public interface.
* @ingroup qk
* @cond
2014-04-06 11:43:13 -04:00
******************************************************************************
2015-04-28 13:45:35 -04:00
* Last updated for version 5.4.0
2015-05-14 15:45:53 -04:00
* Last updated on 2014-05-08
2012-08-14 18:07:04 -04:00
*
* Q u a n t u m L e a P s
* ---------------------------
* innovating embedded systems
*
2014-04-06 11:43:13 -04:00
* Copyright (C) Quantum Leaps, www.state-machine.com.
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:
2014-04-06 11:43:13 -04:00
* Web: www.state-machine.com
* Email: info@state-machine.com
******************************************************************************
2015-04-28 13:45:35 -04:00
* @endcond
2014-04-06 11:43:13 -04:00
*/
2012-08-14 18:07:04 -04:00
#ifndef qk_h
#define qk_h
2014-04-06 11:43:13 -04:00
#include "qequeue.h" /* QK kernel uses the native QF event queue */
#include "qmpool.h" /* QK kernel uses the native QF memory pool */
#include "qpset.h" /* QK kernel uses the native QF priority set */
2012-08-14 18:07:04 -04:00
/****************************************************************************/
/* QF configuration for QK */
2014-04-06 11:43:13 -04:00
/*! This macro defines the type of the event queue used for the
* active objects. */
/**
2015-04-28 13:45:35 -04:00
* @note This is just an example of the macro definition. Typically, you need
2012-08-14 18:07:04 -04:00
* to define it in the specific QF port file (qf_port.h). In case of QK, which
* always depends on the native QF queue, this macro is defined at the level
* of the platform-independent interface qk.h.
*/
2013-09-30 12:54:30 -04:00
#define QF_EQUEUE_TYPE QEQueue
2012-08-14 18:07:04 -04:00
2015-04-28 13:45:35 -04:00
#if defined(QK_TLS)
2014-04-06 11:43:13 -04:00
#define QF_OS_OBJECT_TYPE uint_fast8_t
2013-12-30 17:37:40 -05:00
#define QF_THREAD_TYPE void *
2015-04-28 13:45:35 -04:00
#endif /* QK_TLS */
2012-08-14 18:07:04 -04:00
#if (QF_MAX_ACTIVE <= 8)
2014-04-06 11:43:13 -04:00
extern QPSet8 QK_readySet_; /*!< QK ready-set of AOs */
2012-08-14 18:07:04 -04:00
#else
2014-04-06 11:43:13 -04:00
extern QPSet64 QK_readySet_; /*!< QK ready-set of AOs */
2012-08-14 18:07:04 -04:00
#endif
/****************************************************************************/
2014-04-06 11:43:13 -04:00
/*! QK scheduler */
void QK_sched_(uint_fast8_t p);
2012-08-14 18:07:04 -04:00
2014-04-06 11:43:13 -04:00
/*! Find the highest-priority task ready to run */
uint_fast8_t QK_schedPrio_(void);
2012-08-14 18:07:04 -04:00
/* public-scope objects */
2014-04-06 11:43:13 -04:00
extern uint_fast8_t volatile QK_currPrio_; /*!< current task priority */
2015-04-28 13:45:35 -04:00
#ifndef QK_ISR_CONTEXT_
extern uint_fast8_t volatile QK_intNest_; /*!< ISR nesting level */
#endif /* QK_ISR_CONTEXT_ */
2012-08-14 18:07:04 -04:00
/****************************************************************************/
2014-04-06 11:43:13 -04:00
/*! QK initialization */
/**
2012-08-14 18:07:04 -04:00
* QK_init() is called from QF_init() in qk.c. This function is
* defined in the QK ports.
*/
void QK_init(void);
2014-04-06 11:43:13 -04:00
/*! QK idle callback (customized in BSPs for QK) */
/**
2013-02-12 10:04:39 -05:00
* QK_onIdle() is called continuously by the QK idle loop. This callback
2012-08-14 18:07:04 -04:00
* gives the application an opportunity to enter a power-saving CPU mode,
* or perform some other idle processing.
*
2015-04-28 13:45:35 -04:00
* @note QK_onIdle() is invoked with interrupts enabled and must also
2012-08-14 18:07:04 -04:00
* return with interrupts enabled.
*
2015-04-28 13:45:35 -04:00
* @sa QV_onIdle()
2012-08-14 18:07:04 -04:00
*/
void QK_onIdle(void);
#ifndef QK_NO_MUTEX
2014-04-06 11:43:13 -04:00
/*! QK Mutex type. */
/**
2012-08-14 18:07:04 -04:00
* QMutex represents the priority-ceiling mutex available in QK.
2015-04-28 13:45:35 -04:00
* @sa QK_mutexLock()
* @sa QK_mutexUnlock()
2012-08-14 18:07:04 -04:00
*/
2014-04-06 11:43:13 -04:00
typedef uint_fast8_t QMutex;
/*! QK priority-ceiling mutex lock */
QMutex QK_mutexLock(uint_fast8_t const prioCeiling);
/*! QK priority-ceiling mutex unlock */
2012-08-14 18:07:04 -04:00
void QK_mutexUnlock(QMutex mutex);
2014-04-06 11:43:13 -04:00
#endif /* QK_MUTEX */
2012-08-14 18:07:04 -04:00
2013-09-23 14:34:35 -04:00
/****************************************************************************/
2015-05-14 15:45:53 -04:00
/*! get the current QK version number string of the form "X.Y.Z" */
#define QK_getVersion() (QP_versionStr)
2013-09-23 14:34:35 -04:00
2015-04-28 13:45:35 -04:00
2014-04-06 11:43:13 -04:00
/****************************************************************************/
/* interface used only inside QP implementation, but not in applications */
#ifdef QP_IMPL
2013-09-23 14:34:35 -04:00
2015-04-28 13:45:35 -04:00
#ifndef QK_ISR_CONTEXT_
/*!
* Internal port-specific macro that reports the execution context
* (ISR vs. thread).
*/
/*!
* @returns true if the code executes in the ISR context and false
* otherwise
*/
#define QK_ISR_CONTEXT_() (QK_intNest_ != (uint_fast8_t)0)
#endif /* QK_ISR_CONTEXT_ */
2013-09-23 14:34:35 -04:00
#define QACTIVE_EQUEUE_WAIT_(me_) \
2014-04-06 11:43:13 -04:00
(Q_ASSERT_ID(0, (me_)->eQueue.frontEvt != (QEvt *)0))
2013-09-23 14:34:35 -04:00
#if (QF_MAX_ACTIVE <= 8)
#define QACTIVE_EQUEUE_SIGNAL_(me_) do { \
QPSet8_insert(&QK_readySet_, (me_)->prio); \
2015-04-28 13:45:35 -04:00
if (!QK_ISR_CONTEXT_()) { \
2014-04-06 11:43:13 -04:00
uint_fast8_t p = QK_schedPrio_(); \
if (p != (uint_fast8_t)0) { \
2013-09-23 14:34:35 -04:00
QK_sched_(p); \
} \
} \
} while (0)
#define QACTIVE_EQUEUE_ONEMPTY_(me_) \
(QPSet8_remove(&QK_readySet_, (me_)->prio))
#else
#define QACTIVE_EQUEUE_SIGNAL_(me_) do { \
QPSet64_insert(&QK_readySet_, (me_)->prio); \
2015-04-28 13:45:35 -04:00
if (!QK_ISR_CONTEXT_()) { \
2014-04-06 11:43:13 -04:00
uint_fast8_t p = QK_schedPrio_(); \
if (p != (uint_fast8_t)0) { \
2013-09-23 14:34:35 -04:00
QK_sched_(p); \
} \
} \
} while (0)
#define QACTIVE_EQUEUE_ONEMPTY_(me_) \
QPSet64_remove(&QK_readySet_, (me_)->prio)
#endif
2014-04-06 11:43:13 -04:00
/* native QF event pool operations */
2013-09-23 14:34:35 -04:00
#define QF_EPOOL_TYPE_ QMPool
#define QF_EPOOL_INIT_(p_, poolSto_, poolSize_, evtSize_) \
2013-12-30 17:37:40 -05:00
(QMPool_init(&(p_), (poolSto_), (poolSize_), (evtSize_)))
2014-04-06 11:43:13 -04:00
#define QF_EPOOL_EVENT_SIZE_(p_) ((uint_fast16_t)(p_).blockSize)
2013-09-23 14:34:35 -04:00
#define QF_EPOOL_GET_(p_, e_, m_) ((e_) = (QEvt *)QMPool_get(&(p_), (m_)))
#define QF_EPOOL_PUT_(p_, e_) (QMPool_put(&(p_), (e_)))
2014-04-06 11:43:13 -04:00
#endif /* QP_IMPL */
2013-09-23 14:34:35 -04:00
2014-04-06 11:43:13 -04:00
#endif /* qk_h */
2012-08-14 18:07:04 -04:00