⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 thread.c

📁 avr上的RTOS
💻 C
字号:
/* * Copyright (C) 2004 by Jan Dubiec. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of *    contributors may be used to endorse or promote products derived *    from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY JAN DUBIEC AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JAN DUBIEC * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *//* * $Log: thread.c,v $ * Revision 1.1  2005/05/27 17:18:41  drsung * Moved the file. * * Revision 1.2  2005/04/30 16:42:42  chaac * Fixed bug in handling of NUTDEBUG. Added include for cfg/os.h. If NUTDEBUG * is defined in NutConf, it will make effect where it is used. * * Revision 1.1  2004/03/16 16:48:46  haraldkipp * Added Jan Dubiec's H8/300 port. * */#include <cfg/os.h>/*! * \brief H8/300 GCC context switch frame layout. * * This is the layout of the stack after a thread's context has been  * switched-out. */typedef struct __attribute__ ((packed)) {    u_long csf_er6;    u_long csf_er5;    u_long csf_er4;    u_long csf_er3;    u_long csf_er2;    u_long csf_er1;    u_long csf_er0;    u_short csf_ccr;    u_long csf_pc;} SWITCHFRAME;/*! * \brief H8/300 GCC thread entry frame layout. * * This is the stack layout being build to enter a new thread. */typedef struct {    u_long cef_er0;             /* Thread argument (void* arg) */    u_long cef_ccr_pc;          /* ccr<-@sp+, pc<-@sp+         */} ENTERFRAME;__attribute__ ((interrupt_handler))static void NutThreadEntry(void){    asm volatile ("pop.l er0" "\n\t");  /* thread argument */    /* RTE instruction is generatet automatically by H8 gcc */}/*! * \brief Switch to another thread. * * Stop the current thread, saving its context. Then start the * one with the highest priority, which is ready to run. * * Application programs typically do not call this function. * * \note CPU interrupts must be disabled before calling this function. * */__attribute__ ((noinline))void NutThreadSwitch(void){    asm volatile ("stc.w ccr, @-er7" "\n\t"                  "push.l er0" "\n\t"                  "push.l er1" "\n\t"                  "push.l er2" "\n\t"                  "push.l er3" "\n\t"                  "push.l er4" "\n\t" "push.l er5" "\n\t" "push.l er6" "\n\t" "mov.l er7,%0" "\n\t":"=r" (runningThread->td_sp):);    /*     * This defines a global label, which may be called     * as an entry point into this function.     */    asm volatile (".globl thread_start" "\n\t" "thread_start:" "\n\t"::);    /*     * Reload CPU registers from the thread in front     * of the run queue.     */    runningThread = runQueue;    runningThread->td_state = TDS_RUNNING;    asm volatile ("mov.l %0,er7" "\n\t"                  "pop.l er6" "\n\t"                  "pop.l er5" "\n\t"                  "pop.l er4" "\n\t"                  "pop.l er3" "\n\t"                  "pop.l er2" "\n\t" "pop.l er1" "\n\t" "pop.l er0" "\n\t" "ldc.w @er7+, ccr" "\n\t"::"p" (runningThread->td_sp));}/*! * \brief Create a new thread. * * If the current thread's priority is lower or equal than the default * priority (64), then the current thread is stopped and the new one * is started. * * \param name      String containing the symbolic name of the new thread, *                  up to 8 characters long. * \param fn        The thread's entry point, typically created by the *                  THREAD macro. * \param arg       Argument pointer passed to the new thread. * \param stackSize Number of bytes of the stack space allocated for *                  the new thread. * * \return Pointer to the NUTTHREADINFO structure or 0 to indicate an *         error. */HANDLE NutThreadCreate(u_char * name, void (*fn) (void *), void *arg, size_t stackSize){    u_char *threadMem;    SWITCHFRAME *sf;    ENTERFRAME *ef;    NUTTHREADINFO *td;    NutEnterCritical();    /*     * Allign to the word boundary     */    if ((stackSize & 0x01) != 0)        stackSize++;    /*     * Allocate stack and thread info structure in one block.     */    if ((threadMem = NutHeapAlloc(stackSize + sizeof(NUTTHREADINFO))) == 0) {        NutJumpOutCritical();        return 0;    }    td = (NUTTHREADINFO *) (threadMem + stackSize);    ef = (ENTERFRAME *) ((uptr_t) td - sizeof(ENTERFRAME));    sf = (SWITCHFRAME *) ((uptr_t) ef - sizeof(SWITCHFRAME));    memcpy(td->td_name, name, sizeof(td->td_name) - 1);    td->td_sp = (uptr_t) sf;    td->td_memory = threadMem;    *((u_long *) threadMem) = DEADBEEF;    *((u_long *) (threadMem + 4)) = DEADBEEF;    *((u_long *) (threadMem + 8)) = DEADBEEF;    *((u_long *) (threadMem + 12)) = DEADBEEF;    td->td_priority = 64;    /*     * Setup entry frame to simulate C function entry.     */    ef->cef_er0 = (uptr_t) arg;    ef->cef_ccr_pc = (uptr_t) fn;    sf->csf_pc = (uptr_t) NutThreadEntry;    /*     * Insert into the thread list and the run queue.     *///    NutEnterCritical();    td->td_next = nutThreadList;    nutThreadList = td;    td->td_state = TDS_READY;    td->td_timer = 0;    td->td_queue = 0;#ifdef NUTDEBUG    if (__os_trf)        fprintf(__os_trs, "Cre<%08lx>", (uptr_t) td);#endif    NutThreadAddPriQueue(td, (NUTTHREADINFO **) & runQueue);#ifdef NUTDEBUG    if (__os_trf)        NutDumpThreadList(__os_trs);    //NutDumpThreadQueue(__os_trs, runQueue);#endif    /*     * If no thread is active, switch to new thread.     */    if (runningThread == 0)        asm volatile ("jmp thread_start");    /*     * If current context is not in front of     * the run queue (highest priority), then     * switch to the thread in front.     */    if (runningThread != runQueue) {        runningThread->td_state = TDS_READY;#ifdef NUTDEBUG        if (__os_trf)            fprintf(__os_trs, "New<%08lx %08lx>", (uptr_t) runningThread, (uptr_t) runQueue);#endif        NutThreadSwitch();    }    NutExitCritical();    return td;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -