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

📄 os_cpu_c.c

📁 绝对经典的uc/os的程序
💻 C
📖 第 1 页 / 共 2 页
字号:
/*
*********************************************************************************************************
*                                               uC/OS-II
*                                         The Real-Time Kernel
*
*                        (c) Copyright 1992-1998, Jean J. Labrosse, Plantation, FL
*                                          All Rights Reserved
*
*
*                                       80x86/80x88 Specific code
*                                          LARGE MEMORY MODEL
*
* File : OS_CPU_C.C
* By   : Jean J. Labrosse
*
* Ported date:     Dec 2, 2003
* By:              Stuart Wright (swright@jiskoot.com)
* Target platform: Keil C51 V7.07 and above
*         
* Based on port for 8051 by John X. Liu, China, (johnxliu@163.com)
********************************************************************************************************
*/

#define  OS_CPU_GLOBALS
#include "ucos_ii.h"
/*
*********************************************************************************************************
*                                        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
*
*              pdata  (vd)   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)    : Interrupts are enabled when your task starts executing. You can change this by setting the
*              PSW to 0x0002 instead.  In this case, interrupts would be disabled upon task startup.  The
*              application code would be responsible for enabling interrupts at the beginning of the task
*              code.  You will need to modify OSTaskIdle() and OSTaskStat() so that they enable 
*              interrupts.  Failure to do this will make your system crash!
*********************************************************************************************************
*/

/* The stack variable points to the start pointer in hardware stack and is defined in OS_CPU_A */
extern idata unsigned char STACK_START[1];

OS_STK *OSTaskStkInit (void (*task)(void *pd) KCREENTRANT, void * vd, OS_STK *ptos, INT16U opt) KCREENTRANT
{
    INT8U * stk;

    opt    = opt;                           /* 'opt' is not used, prevent warning                      */
    stk    = (INT8U *) ptos;                /* Load stack pointer                                      */

	stk				-= sizeof(void *);		/* Save the vd to external stack */
	*(void**)stk	 = vd;                  /*                               */

	stk				-= sizeof(INT16U);      					/* The value should be loaded to PC    */
	*(INT16U*)stk	 = (INT16U) task;       					/* next time when this task is running */

	*--stk	 		 = (INT8U )(((INT32U) task>>16)+0x7F);      /* Third byte of PC for dallas 390 */

/* Following is the registers pushed into hardware stack */
	*--stk			 = 'A';                 /* ACC */
	*--stk			 = 'B';                 /* B   */
	*--stk			 = 'X';                 /* DPX */
	*--stk			 = 'H';                 /* DPH */
	*--stk			 = 'L';                 /* DPL */
//	*--stk			 = 'X';                 /* DPX1 for second DPTR */
//	*--stk			 = 'H';                 /* DPH1 for second DPTR */
//	*--stk			 = 'L';                 /* DPL1 for second DPTR */
//	*--stk			 = DPS;                 /* DPS for second DPTR */
	*--stk			 = PSW;					/* PSW */
	*--stk			 = 0;                   /* R0  */
/*
	*--stk			 = 1;                   // should be R1
	*--stk			 = 2;                   // should be R2
	*--stk			 = 3;                   // should be R3
*/
	stk				-= sizeof(void *);      /* Keil C uses R1,R2,R3 to pass the */
	*(void**)stk	 = vd;                  /* arguments of functions.          */

	*--stk			 = 4;                   /* R4  */
	*--stk			 = 5;                   /* R5  */
	*--stk			 = 6;                   /* R6  */
	*--stk			 = 7;                   /* R7  */

/* Following is the registers pushed into hardware stack manually to support the dallas 390 */
    *--stk           = 0x80;                /* IE, EA is enabled  */
/*
    Next is calculating the hardware stack pointer.
*/
    *--stk			 = (INT8U) STACK_START-1      /* Initial value when main was called    */
	                   +1                   /* IE */
	                   +8                   /* R0-R7, eight registers was saved      */
                       +5                   /* ACC, B, DPH, DPL, PSW, five registers */
                       +1                   /* Dallas 390 extra registers DPX1 */
//                       +4                   /* Dallas 390 extra registers for second DPTR - DPL1 DPH1 DPX1 DPS */
                       +sizeof(INT16U)      /* The PC value to be loaded             */
                       +sizeof(INT8U)       /* The third byte of PC value to be loaded for dallas 390  */
					   ;

    return ((void *)stk);
}

OS_EXT  OS_TCB      *OSTCBHighRdy;                    /* Pointer to highest priority TCB ready to run  */

void LoadCtx() KCREENTRANT;   /* Save the current working registers to stack, defined in OS_CPU_A.ASM */

extern INT8U xdata * data C_XBP;

/*
***********************************************************************************************************
* OSStartHighRdy: START MULTITASKING
*     
* Duty:     a) Call OSTaskSwHook() then,
*           b) Set OSRunning to TRUE,
*           c) Switch to the highest priority task.
*
***********************************************************************************************************
*/
void OSStartHighRdy(void) KCREENTRANT
{
    OSTaskSwHook();
	OSRunning=1;

	C_XBP=OSTCBHighRdy->OSTCBStkPtr;

	LoadCtx();
}

/**********************************************************************************************************
* C_OSCtxSw is the c part of OSCtxSw.
* When control passes to this function, the processor registers have been saved in external stack
***********************************************************************************************************/
void C_OSCtxSw(void) KCREENTRANT
{
/*	Save processor registers; DONE in the OSCtxSw part in OS_CPU_ASM.ASM                                  */

/*	Save the current task's stack pointer into the current task's OS_TCB:  
		OSTCBCur->OSTCBStkPtr = Stack pointer;
	Call user definable OSTaskSwHook();                                    
	OSTCBCur  = OSTCBHighRdy;                                              
	OSPrioCur = OSPrioHighRdy;                                             
	Get the stack pointer of the task to resume:                           
		Stack pointer = OSTCBHighRdy->OSTCBStkPtr;
	Restore all processor registers from the new task's stack;             
	Execute a return from interrupt instruction;                           */

    OSTCBCur->OSTCBStkPtr = C_XBP;
    
	OSTaskSwHook();
    OSTCBCur  = OSTCBHighRdy;
    OSPrioCur = OSPrioHighRdy;

    C_XBP       = OSTCBCur->OSTCBStkPtr;
    LoadCtx();
}

INT8U data SaveSP;

void OSIntCtxSw(void) KCREENTRANT
{
	EA=0;
    SP=SaveSP;

    C_XBP=OSTCBCur->OSTCBStkPtr;

#pragma ASM
	EXTRN   CODE(_?KCOSCtxSw)
	MOV		A, #BYTE0( _?KCOSCtxSw)
	PUSH	ACC
	MOV		A, #BYTE1(_?KCOSCtxSw)
	PUSH	ACC
	MOV		A, #BYTE2(_?KCOSCtxSw)
	PUSH	ACC
	RETI
#pragma ENDASM
}

/* OSTickISR can be writen in c language now, so it is more easy for user to write code for their own */
void OSTickISR(void) interrupt 1
{
/* Do this first */
    OSIntNesting++;                      /* Increment ISR nesting level directly to speed up processing */
//	OSIntEnter();					/* Must be called first at every hardware interrupt entry point */
    if(OSIntNesting==1)                     /* Only at the outerest interrupt we do these. */
		{
#pragma ASM
		PUSH IE
#pragma ENDASM
		EA=0;
		SaveSP=SP;
        OSTCBCur->OSTCBStkPtr=C_XBP;	/* OSTCBCur->OSTCBStkPtr is free now, so it can be used to story the value of SP */
		EA=1;
    	}

⌨️ 快捷键说明

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