//============================================================================ // QP/C++ Real-Time Embedded Framework (RTEF) // Copyright (C) 2005 Quantum Leaps, LLC. All rights reserved. // // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-QL-commercial // // This software is dual-licensed under the terms of the open source GNU // General Public License version 3 (or any later version), or alternatively, // under the terms of one of the closed source Quantum Leaps commercial // licenses. // // The terms of the open source GNU General Public License version 3 // can be found at: // // The terms of the closed source Quantum Leaps commercial licenses // can be found at: // // Redistributions in source code must retain this top-level comment block. // Plagiarizing this software to sidestep the license obligations is illegal. // // Contact information: // // //============================================================================ //! @date Last updated on: 2022-09-17 //! @version Last updated for: @ref qpcpp_7_1_1 //! //! @file //! @brief QF/C++ port to embOS RTOS kernel, all supported compilers #define QP_IMPL // this is QP implementation #include "qf_port.hpp" // QF port #include "qf_pkg.hpp" #include "qassert.h" #ifdef Q_SPY // QS software tracing enabled? #include "qs_port.hpp" // QS port #include "qs_pkg.hpp" // QS package-scope internal interface #else #include "qs_dummy.hpp" // disable the QS software tracing #endif // Q_SPY // namespace QP ============================================================== namespace QP { Q_DEFINE_THIS_MODULE("qf_port") //............................................................................ // define __TARGET_FPU_VFP symbol depending on the compiler... #if defined (__CC_ARM) // ARM Compiler // in ARM Compiler __TARGET_FPU_VFP is a pre-defined symbol #elif defined (__ICCARM__) // IAR Compiler #if defined __ARMVFP__ #define __TARGET_FPU_VFP 1 #endif #elif defined (__GNUC__) // GNU Compiler #if defined (__VFP_FP__) && !defined(__SOFTFP__) #define __TARGET_FPU_VFP 1 #endif #endif //............................................................................ void QF::init(void) { OS_InitKern(); // initialize embOS OS_InitHW(); // initialize the hardware used by embOS } //............................................................................ int_t QF::run(void) { onStartup(); // QF callback to configure and start interrupts // produce the QS_QF_RUN trace record QS_CRIT_STAT_ QS_BEGIN_PRE_(QS_QF_RUN, 0U) QS_END_PRE_() OS_Start(); // start embOS multitasking Q_ERROR_ID(100); // OS_Start() should never return return 0; // dummy return to make the compiler happy } //............................................................................ void QF::stop(void) { onCleanup(); // cleanup callback } // thread for active objects ------------------------------------------------- void QActive::thread_(QActive *act) { // event-loop for (;;) { // for-ever QEvt const *e = act->get_(); // wait for event act->dispatch(e, act->m_prio); // dispatch to the AO's state machine QF::gc(e); // check if the event is garbage, and collect it if so } //act->unregister_(); // remove this object from QF //OS_TerminateTask(&act->m_thread); } //............................................................................ static void thread_function(void *pVoid) { // embOS signature QActive *act = reinterpret_cast(pVoid); #ifdef __TARGET_FPU_VFP // does the task use the FPU? see NOTE1 if ((act->getOsObject() & TASK_USES_FPU) != 0U) { OS_ExtendTaskContext_VFP(); } #endif // __TARGET_FPU_VFP QActive::thread_(act); } //............................................................................ void QActive::start(QPrioSpec const prioSpec, QEvt const * * const qSto, std::uint_fast16_t const qLen, void * const stkSto, std::uint_fast16_t const stkSize, void const * const par) { m_prio = static_cast(prioSpec & 0xFFU); // QF-priority m_pthre = static_cast(prioSpec >> 8U); // preemption-thre. register_(); // make QF aware of this AO // create the embOS message box for the AO OS_CreateMB(&m_eQueue, static_cast(sizeof(QEvt *)), static_cast(qLen), static_cast(&qSto[0])); init(par, m_prio); // take the top-most initial tran. QS_FLUSH(); // flush the trace buffer to the host // create an embOS task for the AO OS_CreateTaskEx(&m_thread, #if (OS_TRACKNAME != 0) m_thread.Name, // the configured task name #elif "AO", // a generic AO task name #endif static_cast(m_prio), // embOS uses same numbering as QP &thread_function, static_cast(stkSto), static_cast(stkSize), 0U, // no AOs at the same prio this); } //............................................................................ void QActive::setAttr(std::uint32_t attr1, void const *attr2) { switch (attr1) { case TASK_NAME_ATTR: #if (OS_TRACKNAME != 0) Q_ASSERT_ID(300, m_thread.Name == nullptr); m_thread.Name = static_cast(attr2); #endif break; case TASK_USES_FPU: m_osObject = attr1; break; //... default: break; } } //............................................................................ bool QActive::post_(QEvt const * const e, std::uint_fast16_t const margin, void const * const sender) noexcept { std::uint_fast16_t nFree; bool status; QF_CRIT_STAT_ QF_CRIT_E_(); nFree = static_cast(m_eQueue.maxMsg - m_eQueue.nofMsg); if (margin == QF::NO_MARGIN) { if (nFree > 0U) { status = true; // can post } else { status = false; // cannot post Q_ERROR_ID(510); // must be able to post the event } } else if (nFree > static_cast(margin)) { status = true; // can post } else { status = false; // cannot post } if (status) { // can post the event? QS_BEGIN_NOCRIT_PRE_(QS_QF_ACTIVE_POST, m_prio) QS_TIME_PRE_(); // timestamp QS_OBJ_PRE_(sender); // the sender object QS_SIG_PRE_(e->sig); // the signal of the event QS_OBJ_PRE_(this); // this active object (recipient) QS_2U8_PRE_(e->poolId_, e->refCtr_); // pool Id & ref Count QS_EQC_PRE_(nFree); // # free entries QS_EQC_PRE_(0U); // min # free (unknown) QS_END_NOCRIT_PRE_() if (e->poolId_ != 0U) { // is it a pool event? QF_EVT_REF_CTR_INC_(e); // increment the reference counter } QF_CRIT_X_(); // posting to the embOS mailbox must succeed, see NOTE3 Q_ALLEGE_ID(520, OS_PutMailCond(&m_eQueue, static_cast(&e)) == 0); } else { QS_BEGIN_NOCRIT_PRE_(QS_QF_ACTIVE_POST_ATTEMPT, m_prio) QS_TIME_PRE_(); // timestamp QS_OBJ_PRE_(sender); // the sender object QS_SIG_PRE_(e->sig); // the signal of the event QS_OBJ_PRE_(this); // this active object (recipient) QS_2U8_PRE_(e->poolId_, e->refCtr_); // pool Id & ref Count QS_EQC_PRE_(nFree); // # free entries QS_EQC_PRE_(0U); // min # free (unknown) QS_END_NOCRIT_PRE_() QF_CRIT_X_(); } return status; } //............................................................................ void QActive::postLIFO(QEvt const * const e) noexcept { QF_CRIT_STAT_ QF_CRIT_E_(); QS_BEGIN_NOCRIT_PRE_(QS_QF_ACTIVE_POST_LIFO, m_prio) QS_TIME_PRE_(); // timestamp QS_SIG_PRE_(e->sig); // the signal of this event QS_OBJ_PRE_(this); // this active object QS_2U8_PRE_(e->poolId_, e->refCtr_); // pool Id & ref Count QS_EQC_PRE_(m_eQueue.maxMsg - m_eQueue.nofMsg); // # free entries QS_EQC_PRE_(0U); // min # free entries (unknown) QS_END_NOCRIT_PRE_() if (e->poolId_ != 0U) { // is it a pool event? QF_EVT_REF_CTR_INC_(e); // increment the reference counter } QF_CRIT_X_(); // posting to the embOS mailbox must succeed, see NOTE3 Q_ALLEGE_ID(810, OS_PutMailFrontCond(&m_eQueue, static_cast(&e)) == static_cast(0)); } //............................................................................ QEvt const *QActive::get_(void) noexcept { QEvt const *e; QS_CRIT_STAT_ OS_GetMail(&m_eQueue, &e); QS_BEGIN_PRE_(QS_QF_ACTIVE_GET, m_prio) QS_TIME_PRE_(); // timestamp QS_SIG_PRE_(e->sig); // the signal of this event QS_OBJ_PRE_(this); // this active object QS_2U8_PRE_(e->poolId_, e->refCtr_); // pool Id & ref Count QS_EQC_PRE_(m_eQueue.maxMsg - m_eQueue.nofMsg); // # free entries QS_END_PRE_() return e; } } // namespace QP //============================================================================ // NOTE1: // In case of hardware-supported floating point unit (FPU), a task must // preserve the FPU registers accross the context switch. However, this // additional overhead is necessary only for tasks that actually use the // FPU. In this QP-embOS port, an active object task that uses the FPU is // designated by the QF_TASK_USES_FPU attribute, which can be set wiht the // QF_setEmbOsTaskAttr() function. The task attributes must be set *before* // calling QACTIVE_START(). The task attributes are saved in // QActive.m_osObject member. // // NOTE3: // The event posting to embOS mailbox occurs inside a critical section, // but this is OK, because the QF/embOS critical sections are designed // to nest. //