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

📄 os_cpu_c.c

📁 μC/OS-II and the Xilinx MicroBlaze
💻 C
字号:
/***********************************************************************************************************                                               uC/OS-II*                                         The Real-Time Kernel*			 *                            (c) Copyright 1992-2003, Micrium, Inc., Weston, FL*                                          All Rights Reserved**                                           Xilinx MicroBlaze**                                          GNU  C/C++ Compiler** File         : OS_CPU_C.C* By           : Jean J. Labrosse**********************************************************************************************************/#define  OS_CPU_GLOBALS#include <ucos_ii.h>extern   void  *_SDA_BASE_;extern   void  *_SDA2_BASE_;/***********************************************************************************************************                                       OS INITIALIZATION HOOK*                                            (BEGINNING)** Description: This function is called by OSInit() at the beginning of OSInit().** Arguments  : none** Note(s)    : 1) Interrupts should be disabled during this call.**********************************************************************************************************/#if OS_CPU_HOOKS_EN > 0 && OS_VERSION > 203void  OSInitHookBegin (void){}#endif/***********************************************************************************************************                                       OS INITIALIZATION HOOK*                                               (END)** Description: This function is called by OSInit() at the end of OSInit().** Arguments  : none** Note(s)    : 1) Interrupts should be disabled during this call.**********************************************************************************************************/#if OS_CPU_HOOKS_EN > 0 && OS_VERSION > 203void  OSInitHookEnd (void){}#endif/*$PAGE*//***********************************************************************************************************                                          TASK CREATION HOOK** Description: This function is called when a task is created.** Arguments  : ptcb   is a pointer to the task control block of the task being created.** Note(s)    : 1) Interrupts are disabled during this call.**********************************************************************************************************/#if OS_CPU_HOOKS_EN > 0 void  OSTaskCreateHook (OS_TCB *ptcb){#if OS_VIEW_MODULE >0    OSView_TaskCreateHook(ptcb);#endif}#endif/***********************************************************************************************************                                           TASK DELETION HOOK** Description: This function is called when a task is deleted.** Arguments  : ptcb   is a pointer to the task control block of the task being deleted.** Note(s)    : 1) Interrupts are disabled during this call.**********************************************************************************************************/#if OS_CPU_HOOKS_EN > 0 void  OSTaskDelHook (OS_TCB *ptcb){    ptcb = ptcb;                       /* Prevent compiler warning                                     */}#endif/***********************************************************************************************************                                             IDLE TASK HOOK** Description: This function is called by the idle task.  This hook has been added to allow you to do  *              such things as STOP the CPU to conserve power.** Arguments  : none** Note(s)    : 1) Interrupts are enabled during this call.**********************************************************************************************************/#if OS_CPU_HOOKS_EN > 0 && OS_VERSION >= 251void  OSTaskIdleHook (void){}#endif/***********************************************************************************************************                                           STATISTIC TASK HOOK** Description: This function is called every second by uC/OS-II's statistics task.  This allows your *              application to add functionality to the statistics task.** Arguments  : none**********************************************************************************************************/#if OS_CPU_HOOKS_EN > 0 void  OSTaskStatHook (void){}#endif/*$PAGE*//***********************************************************************************************************                                        INITIALIZE A TASK'S STACK** Description: This function is called by either OSTaskCreate() or OSTaskCreateExt() to initialize the*              stack frame of the task being created.  This function is highly processor specific.** Arguments  : task          is a pointer to the task code**              p_arg         is a pointer to a user supplied data area that will be passed to the task*                            when the task first executes.**              ptos          is a pointer to the top of stack.  It is assumed that 'ptos' points to*                            a 'free' entry on the task stack.  If OS_STK_GROWTH is set to 1 then*                            'ptos' will contain the HIGHEST valid address of the stack.  Similarly, if*                            OS_STK_GROWTH is set to 0, the 'ptos' will contains the LOWEST valid address*                            of the stack.**              opt           specifies options that can be used to alter the behavior of OSTaskStkInit().*                            (see uCOS_II.H for OS_TASK_OPT_???).** Returns    : Always returns the location of the new top-of-stack' once the processor registers have*              been placed on the stack in the proper order.** Note(s)    : 1) Interrupts are enabled when your task starts executing. **                 OSTCBHighRdy->OSTCBStkPtr + 0x00     RMSR   (IE=1)       (LOW Memory)*                                           + 0x04     R2*                                           + 0x08     R3*                                           + 0x0C     R4*                                           + 0x10     R5     (p_arg passed to task)*                                           + 0x14     R6*                                           + 0x18     R7*                                           + 0x1C     R8*                                           + 0x20     R9*                                           + 0x24     R10*                                           + 0x28     R11*                                           + 0x2C     R12*                                           + 0x30     R13*                                           + 0x34     R14*                                           + 0x38     R15*                                           + 0x3C     R17*                                           + 0x40     R18*                                           + 0x44     R19*                                           + 0x48     R20*                                           + 0x4C     R21*                                           + 0x50     R22*                                           + 0x54     R23*                                           + 0x58     R24*                                           + 0x5C     R25*                                           + 0x60     R26*                                           + 0x64     R27*                                           + 0x68     R28*                                           + 0x6C     R29*                                           + 0x70     R30*                                           + 0x74     R31                (HIGH Memory)*                                           + 0x78     Empty*                 ptos --------->           + 0x7C     Empty**              2) R16 is not saved as part of the task context since it is used by the debugger.**********************************************************************************************************//*$PAGE*/OS_STK  *OSTaskStkInit (void (*task)(void *pd), void *p_arg, OS_STK *ptos, INT16U opt){    INT32U  *pstk;    opt     = opt;                    /* 'opt' is not used, prevent warning                            */    pstk    = (INT32U *)ptos;         /* Load stack pointer                                            */    pstk--;                           /* Make sure we point to free entry ...                          */    pstk--;                           /* ... compiler uses top-of-stack so free an extra one.          */    *pstk-- = (INT32U)0x31313131;     /* R31                                                           */    *pstk-- = (INT32U)0x30303030;     /* R30                                                           */    *pstk-- = (INT32U)0x29292929;     /* R29                                                           */    *pstk-- = (INT32U)0x28282828;     /* R28                                                           */    *pstk-- = (INT32U)0x27272727;     /* R27                                                           */    *pstk-- = (INT32U)0x26262626;     /* R26                                                           */    *pstk-- = (INT32U)0x25252525;     /* R25                                                           */    *pstk-- = (INT32U)0x24242424;     /* R24                                                           */    *pstk-- = (INT32U)0x23232323;     /* R23                                                           */    *pstk-- = (INT32U)0x22222222;     /* R22                                                           */    *pstk-- = (INT32U)0x21212121;     /* R21                                                           */    *pstk-- = (INT32U)0x20202020;     /* R20                                                           */    *pstk-- = (INT32U)0x19191919;     /* R19                                                           */    *pstk-- = (INT32U)0x18181818;     /* R18                                                           */    *pstk-- = (INT32U)0x17171717;     /* R17                                                           */    *pstk-- = (INT32U)task - 8;       /* R15 = task return address (assuming function call)            */    *pstk-- = (INT32U)task;           /* R14 = task (Interrupt return address)                         */    *pstk-- = (INT32U)&_SDA_BASE_;    /* R13                                                           */    *pstk-- = (INT32U)0x12121212;     /* R12                                                           */    *pstk-- = (INT32U)0x11111111;     /* R11                                                           */    *pstk-- = (INT32U)0x10101010;     /* R10                                                           */    *pstk-- = (INT32U)0x09090909;     /* R09                                                           */    *pstk-- = (INT32U)0x08080808;     /* R08                                                           */    *pstk-- = (INT32U)0x07070707;     /* R07                                                           */    *pstk-- = (INT32U)0x06060606;     /* R06                                                           */    *pstk-- = (INT32U)p_arg;          /* R05                                                           */    *pstk-- = (INT32U)0x04040404;     /* R04                                                           */    *pstk-- = (INT32U)0x03030303;     /* R03                                                           */    *pstk-- = (INT32U)&_SDA2_BASE_;   /* R02                                                           */    *pstk   = (INT32U)0x00000002;     /* MSR with interrupts enabled                                   */    return ((OS_STK *)pstk);          /* Return new top of stack                                       */}/*$PAGE*//***********************************************************************************************************                                           TASK SWITCH HOOK** Description: This function is called when a task switch is performed.  This allows you to perform other*              operations during a context switch.** Arguments  : none** Note(s)    : 1) Interrupts are disabled during this call.*              2) It is assumed that the global pointer 'OSTCBHighRdy' points to the TCB of the task that*                 will be 'switched in' (i.e. the highest priority task) and, 'OSTCBCur' points to the *                 task being switched out (i.e. the preempted task).**********************************************************************************************************/#if (OS_CPU_HOOKS_EN > 0) && (OS_TASK_SW_HOOK_EN > 0)void  OSTaskSwHook (void){#if OS_VIEW_MODULE > 0    OSView_TaskSwHook();#endif}#endif/***********************************************************************************************************                                           OS_TCBInit() HOOK** Description: This function is called by OS_TCBInit() after setting up most of the TCB.** Arguments  : ptcb    is a pointer to the TCB of the task being created.** Note(s)    : 1) Interrupts may or may not be ENABLED during this call.**********************************************************************************************************/#if OS_CPU_HOOKS_EN > 0 && OS_VERSION > 203void  OSTCBInitHook (OS_TCB *ptcb){    ptcb = ptcb;                                           /* Prevent Compiler warning                 */}#endif/***********************************************************************************************************                                               TICK HOOK** Description: This function is called every tick.** Arguments  : none** Note(s)    : 1) Interrupts may or may not be ENABLED during this call.**********************************************************************************************************/#if (OS_CPU_HOOKS_EN > 0) && (OS_TIME_TICK_HOOK_EN > 0)void  OSTimeTickHook (void){#if OS_VIEW_MODULE > 0    OSView_TickHook();#endif}#endif

⌨️ 快捷键说明

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