]> git.sur5r.net Git - freertos/commitdiff
Added RX200 port layer.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 2 Sep 2011 18:31:56 +0000 (18:31 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 2 Sep 2011 18:31:56 +0000 (18:31 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1580 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Source/portable/Renesas/RX200/port.c [new file with mode: 0644]
Source/portable/Renesas/RX200/port_asm.src [new file with mode: 0644]
Source/portable/Renesas/RX200/portmacro.h [new file with mode: 0644]

diff --git a/Source/portable/Renesas/RX200/port.c b/Source/portable/Renesas/RX200/port.c
new file mode 100644 (file)
index 0000000..bc5c74e
--- /dev/null
@@ -0,0 +1,340 @@
+/*\r
+    FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.\r
+       \r
+\r
+    ***************************************************************************\r
+     *                                                                       *\r
+     *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
+     *    Complete, revised, and edited pdf reference manuals are also       *\r
+     *    available.                                                         *\r
+     *                                                                       *\r
+     *    Purchasing FreeRTOS documentation will not only help you, by       *\r
+     *    ensuring you get running as quickly as possible and with an        *\r
+     *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
+     *    the FreeRTOS project to continue with its mission of providing     *\r
+     *    professional grade, cross platform, de facto standard solutions    *\r
+     *    for microcontrollers - completely free of charge!                  *\r
+     *                                                                       *\r
+     *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
+     *                                                                       *\r
+     *    Thank you for using FreeRTOS, and thank you for your support!      *\r
+     *                                                                       *\r
+    ***************************************************************************\r
+\r
+\r
+    This file is part of the FreeRTOS distribution.\r
+\r
+    FreeRTOS is free software; you can redistribute it and/or modify it under\r
+    the terms of the GNU General Public License (version 2) as published by the\r
+    Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
+    >>>NOTE<<< The modification to the GPL is included to allow you to\r
+    distribute a combined work that includes FreeRTOS without being obliged to\r
+    provide the source code for proprietary components outside of the FreeRTOS\r
+    kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
+    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
+    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
+    more details. You should have received a copy of the GNU General Public\r
+    License and the FreeRTOS license exception along with FreeRTOS; if not it\r
+    can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
+    by writing to Richard Barry, contact details for whom are available on the\r
+    FreeRTOS WEB site.\r
+\r
+    1 tab == 4 spaces!\r
+\r
+    http://www.FreeRTOS.org - Documentation, latest information, license and\r
+    contact details.\r
+\r
+    http://www.SafeRTOS.com - A version that is certified for use in safety\r
+    critical systems.\r
+\r
+    http://www.OpenRTOS.com - Commercial support, development, porting,\r
+    licensing and training services.\r
+*/\r
+\r
+/*-----------------------------------------------------------\r
+ * Implementation of functions defined in portable.h for the SH2A port.\r
+ *----------------------------------------------------------*/\r
+\r
+/* Scheduler includes. */\r
+#include "FreeRTOS.h"\r
+#include "task.h"\r
+\r
+/* Library includes. */\r
+#include "string.h"\r
+\r
+/* Hardware specifics. */\r
+#include "iodefine.h"\r
+\r
+/*-----------------------------------------------------------*/\r
+\r
+/* Tasks should start with interrupts enabled and in Supervisor mode, therefore \r
+PSW is set with U and I set, and PM and IPL clear. */\r
+#define portINITIAL_PSW     ( ( portSTACK_TYPE ) 0x00030000 )\r
+\r
+/*-----------------------------------------------------------*/\r
+\r
+/*\r
+ * Function to start the first task executing - written in asm code as direct\r
+ * access to registers is required. \r
+ */\r
+static void prvStartFirstTask( void );\r
+\r
+/*\r
+ * Software interrupt handler.  Performs the actual context switch (saving and\r
+ * restoring of registers).  Written in asm code as direct register access is\r
+ * required.\r
+ */\r
+static void prvYieldHandler( void );\r
+\r
+/*\r
+ * The entry point for the software interrupt handler.  This is the function\r
+ * that calls the inline asm function prvYieldHandler().  It is installed in \r
+ * the vector table, but the code that installs it is in prvYieldHandler rather\r
+ * than using a #pragma.\r
+ */\r
+void vSoftwareInterruptISR( void );\r
+\r
+/*-----------------------------------------------------------*/\r
+\r
+/* This is accessed by the inline assembler functions so is file scope for\r
+convenience. */\r
+extern void *pxCurrentTCB;\r
+extern void vTaskSwitchContext( void );\r
+\r
+/*-----------------------------------------------------------*/\r
+\r
+/* \r
+ * See header file for description. \r
+ */\r
+portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
+{\r
+       /* R0 is not included as it is the stack pointer. */\r
+       \r
+       *pxTopOfStack = 0xdeadbeef;\r
+       pxTopOfStack--;\r
+    *pxTopOfStack = 0xdeadbeef;\r
+       pxTopOfStack--;\r
+       *pxTopOfStack = portINITIAL_PSW;\r
+       pxTopOfStack--;\r
+       *pxTopOfStack = ( portSTACK_TYPE ) pxCode;\r
+       \r
+       /* When debugging it can be useful if every register is set to a known\r
+       value.  Otherwise code space can be saved by just setting the registers\r
+       that need to be set. */\r
+       #ifdef USE_FULL_REGISTER_INITIALISATION\r
+       {\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0xffffffff;     /* r15. */\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0xeeeeeeee;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0xdddddddd;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0xcccccccc;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0xbbbbbbbb;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0xaaaaaaaa;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0x99999999;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0x88888888;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0x77777777;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0x66666666;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0x55555555;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0x44444444;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0x33333333;\r
+               pxTopOfStack--;\r
+               *pxTopOfStack = 0x22222222;\r
+               pxTopOfStack--;\r
+       }\r
+       #else\r
+       {\r
+               pxTopOfStack -= 15;\r
+       }\r
+       #endif\r
+       \r
+       *pxTopOfStack = ( portSTACK_TYPE ) pvParameters; /* R1 */\r
+       pxTopOfStack--;                         \r
+       *pxTopOfStack = 0x12345678; /* Accumulator. */\r
+       pxTopOfStack--;\r
+       *pxTopOfStack = 0x87654321; /* Accumulator. */\r
+\r
+       return pxTopOfStack;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+portBASE_TYPE xPortStartScheduler( void )\r
+{\r
+extern void vApplicationSetupTimerInterrupt( void );\r
+\r
+       /* Use pxCurrentTCB just so it does not get optimised away. */\r
+       if( pxCurrentTCB != NULL )\r
+       {\r
+               /* Call an application function to set up the timer that will generate the\r
+               tick interrupt.  This way the application can decide which peripheral to \r
+               use.  A demo application is provided to show a suitable example. */\r
+               vApplicationSetupTimerInterrupt();\r
+\r
+               /* Enable the software interrupt. */            \r
+               _IEN( _ICU_SWINT ) = 1;\r
+               \r
+               /* Ensure the software interrupt is clear. */\r
+               _IR( _ICU_SWINT ) = 0;\r
+               \r
+               /* Ensure the software interrupt is set to the kernel priority. */\r
+               _IPR( _ICU_SWINT ) = configKERNEL_INTERRUPT_PRIORITY;\r
+       \r
+               /* Start the first task. */\r
+               prvStartFirstTask();\r
+       }\r
+\r
+       /* Just to make sure the function is not optimised away. */\r
+       ( void ) vSoftwareInterruptISR();\r
+\r
+       /* Should not get here. */\r
+       return pdFAIL;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#pragma inline_asm prvStartFirstTask\r
+static void prvStartFirstTask( void )\r
+{\r
+       /* When starting the scheduler there is nothing that needs moving to the\r
+       interrupt stack because the function is not called from an interrupt.\r
+       Just ensure the current stack is the user stack. */\r
+       SETPSW  U\r
+\r
+       /* Obtain the location of the stack associated with which ever task \r
+       pxCurrentTCB is currently pointing to. */\r
+       MOV.L   #_pxCurrentTCB, R15\r
+       MOV.L   [R15], R15\r
+       MOV.L   [R15], R0\r
+\r
+       /* Restore the registers from the stack of the task pointed to by \r
+       pxCurrentTCB. */\r
+    POP                R15\r
+    MVTACLO    R15             /* Accumulator low 32 bits. */\r
+    POP                R15\r
+    MVTACHI    R15             /* Accumulator high 32 bits. */\r
+    POPM       R1-R15          /* R1 to R15 - R0 is not included as it is the SP. */\r
+    RTE                                        /* This pops the remaining registers. */\r
+    NOP\r
+    NOP\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#pragma interrupt ( vTickISR( vect = _VECT( configTICK_VECTOR ), enable ) )\r
+void vTickISR( void )\r
+{\r
+       /* Increment the tick, and perform any processing the new tick value\r
+       necessitates. */\r
+       set_ipl( configMAX_SYSCALL_INTERRUPT_PRIORITY );\r
+       {\r
+               vTaskIncrementTick();\r
+       }\r
+       set_ipl( configKERNEL_INTERRUPT_PRIORITY );\r
+       \r
+       /* Only select a new task if the preemptive scheduler is being used. */\r
+       #if( configUSE_PREEMPTION == 1 )\r
+               taskYIELD();\r
+       #endif\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+void vSoftwareInterruptISR( void )\r
+{\r
+       prvYieldHandler();\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#pragma inline_asm prvYieldHandler\r
+static void prvYieldHandler( void )\r
+{\r
+       /* Re-enable interrupts. */\r
+       SETPSW  I\r
+\r
+       /* Move the data that was automatically pushed onto the interrupt stack when\r
+       the interrupt occurred from the interrupt stack to the user stack.  \r
+       \r
+       R15 is saved before it is clobbered. */\r
+       PUSH.L  R15\r
+       \r
+       /* Read the user stack pointer. */\r
+       MVFC    USP, R15\r
+       \r
+       /* Move the address down to the data being moved. */\r
+       SUB             #12, R15\r
+       MVTC    R15, USP\r
+       \r
+       /* Copy the data across. */\r
+       MOV.L   [ R0 ], [ R15 ] ; R15\r
+       MOV.L   4[ R0 ], 4[ R15 ]  ; PC\r
+       MOV.L   8[ R0 ], 8[ R15 ]  ; PSW\r
+\r
+       /* Move the interrupt stack pointer to its new correct position. */\r
+       ADD     #12, R0\r
+       \r
+       /* All the rest of the registers are saved directly to the user stack. */\r
+       SETPSW  U\r
+\r
+       /* Save the rest of the general registers (R15 has been saved already). */\r
+       PUSHM   R1-R14\r
+       \r
+       /* Save the accumulator. */\r
+       MVFACHI R15\r
+       PUSH.L  R15\r
+       MVFACMI R15     ; Middle order word.\r
+       SHLL    #16, R15 ; Shifted left as it is restored to the low order word.\r
+       PUSH.L  R15\r
+\r
+       /* Save the stack pointer to the TCB. */\r
+       MOV.L   #_pxCurrentTCB, R15\r
+       MOV.L   [ R15 ], R15\r
+       MOV.L   R0, [ R15 ]\r
+                       \r
+       /* Ensure the interrupt mask is set to the syscall priority while the kernel\r
+       structures are being accessed. */\r
+       MVTIPL  #configMAX_SYSCALL_INTERRUPT_PRIORITY\r
+\r
+       /* Select the next task to run. */\r
+       BSR.A   _vTaskSwitchContext\r
+\r
+       /* Reset the interrupt mask as no more data structure access is required. */\r
+       MVTIPL  #configKERNEL_INTERRUPT_PRIORITY\r
+\r
+       /* Load the stack pointer of the task that is now selected as the Running\r
+       state task from its TCB. */\r
+       MOV.L   #_pxCurrentTCB,R15\r
+       MOV.L   [ R15 ], R15\r
+       MOV.L   [ R15 ], R0\r
+\r
+       /* Restore the context of the new task.  The PSW (Program Status Word) and\r
+       PC will be popped by the RTE instruction. */\r
+       POP             R15\r
+       MVTACLO R15\r
+       POP             R15\r
+       MVTACHI R15\r
+       POPM    R1-R15\r
+       RTE\r
+       NOP\r
+       NOP\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+void vPortEndScheduler( void )\r
+{\r
+       /* Not implemented as there is nothing to return to. */\r
+       \r
+       /* The following line is just to prevent the symbol getting optimised away. */\r
+       ( void ) vTaskSwitchContext();\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+\r
+\r
diff --git a/Source/portable/Renesas/RX200/port_asm.src b/Source/portable/Renesas/RX200/port_asm.src
new file mode 100644 (file)
index 0000000..eb112e2
--- /dev/null
@@ -0,0 +1,14 @@
+               .GLB    _vSoftwareInterruptISR\r
+\r
+               .SECTION   P,CODE\r
+               \r
+_vSoftwareInterruptEntry:\r
+\r
+       BRA     _vSoftwareInterruptISR\r
+\r
+               .RVECTOR        27, _vSoftwareInterruptEntry\r
+\r
+               .END\r
+\r
+\r
+\r
diff --git a/Source/portable/Renesas/RX200/portmacro.h b/Source/portable/Renesas/RX200/portmacro.h
new file mode 100644 (file)
index 0000000..2bd15ff
--- /dev/null
@@ -0,0 +1,137 @@
+/*\r
+    FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.\r
+       \r
+\r
+    ***************************************************************************\r
+     *                                                                       *\r
+     *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
+     *    Complete, revised, and edited pdf reference manuals are also       *\r
+     *    available.                                                         *\r
+     *                                                                       *\r
+     *    Purchasing FreeRTOS documentation will not only help you, by       *\r
+     *    ensuring you get running as quickly as possible and with an        *\r
+     *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
+     *    the FreeRTOS project to continue with its mission of providing     *\r
+     *    professional grade, cross platform, de facto standard solutions    *\r
+     *    for microcontrollers - completely free of charge!                  *\r
+     *                                                                       *\r
+     *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
+     *                                                                       *\r
+     *    Thank you for using FreeRTOS, and thank you for your support!      *\r
+     *                                                                       *\r
+    ***************************************************************************\r
+\r
+\r
+    This file is part of the FreeRTOS distribution.\r
+\r
+    FreeRTOS is free software; you can redistribute it and/or modify it under\r
+    the terms of the GNU General Public License (version 2) as published by the\r
+    Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
+    >>>NOTE<<< The modification to the GPL is included to allow you to\r
+    distribute a combined work that includes FreeRTOS without being obliged to\r
+    provide the source code for proprietary components outside of the FreeRTOS\r
+    kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
+    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
+    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
+    more details. You should have received a copy of the GNU General Public\r
+    License and the FreeRTOS license exception along with FreeRTOS; if not it\r
+    can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
+    by writing to Richard Barry, contact details for whom are available on the\r
+    FreeRTOS WEB site.\r
+\r
+    1 tab == 4 spaces!\r
+\r
+    http://www.FreeRTOS.org - Documentation, latest information, license and\r
+    contact details.\r
+\r
+    http://www.SafeRTOS.com - A version that is certified for use in safety\r
+    critical systems.\r
+\r
+    http://www.OpenRTOS.com - Commercial support, development, porting,\r
+    licensing and training services.\r
+*/\r
+\r
+\r
+#ifndef PORTMACRO_H\r
+#define PORTMACRO_H\r
+\r
+#ifdef __cplusplus\r
+extern "C" {\r
+#endif\r
+\r
+/* Hardware specifics. */\r
+#include "machine.h"\r
+\r
+/*-----------------------------------------------------------\r
+ * Port specific definitions.  \r
+ *\r
+ * The settings in this file configure FreeRTOS correctly for the\r
+ * given hardware and compiler.\r
+ *\r
+ * These settings should not be altered.\r
+ *-----------------------------------------------------------\r
+ */\r
+\r
+/* Type definitions - these are a bit legacy and not really used now, other than\r
+portSTACK_TYPE and portBASE_TYPE. */\r
+#define portCHAR               char\r
+#define portFLOAT              float\r
+#define portDOUBLE             double\r
+#define portLONG               long\r
+#define portSHORT              short\r
+#define portSTACK_TYPE unsigned portLONG\r
+#define portBASE_TYPE  long\r
+\r
+#if( configUSE_16_BIT_TICKS == 1 )\r
+       typedef unsigned portSHORT portTickType;\r
+       #define portMAX_DELAY ( portTickType ) 0xffff\r
+#else\r
+       typedef unsigned portLONG portTickType;\r
+       #define portMAX_DELAY ( portTickType ) 0xffffffff\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+/* Hardware specifics. */\r
+#define portBYTE_ALIGNMENT                             8       /* Could make four, according to manual. */\r
+#define portSTACK_GROWTH                               -1\r
+#define portTICK_RATE_MS                               ( ( portTickType ) 1000 / configTICK_RATE_HZ )          \r
+#define portNOP()                                              nop()\r
+\r
+/* The location of the software interrupt register.  Software interrupts use\r
+vector 27. */\r
+#define portITU_SWINTR                 ( ( unsigned char * ) 0x000872E0 )\r
+#define portYIELD()                            *portITU_SWINTR = 0x01; nop(); nop(); nop(); nop(); nop()\r
+#define portYIELD_FROM_ISR( x )        if( x != pdFALSE ) portYIELD()\r
+\r
+/*\r
+ * These macros should be called directly, but through the taskENTER_CRITICAL()\r
+ * and taskEXIT_CRITICAL() macros.\r
+ */\r
+#define portENABLE_INTERRUPTS()        set_ipl( 0 )\r
+#define portDISABLE_INTERRUPTS()       set_ipl( configMAX_SYSCALL_INTERRUPT_PRIORITY )\r
+\r
+/* Critical nesting counts are stored in the TCB. */\r
+#define portCRITICAL_NESTING_IN_TCB ( 1 )\r
+\r
+/* The critical nesting functions defined within tasks.c. */\r
+extern void vTaskEnterCritical( void );\r
+extern void vTaskExitCritical( void );\r
+#define portENTER_CRITICAL()   vTaskEnterCritical();\r
+#define portEXIT_CRITICAL()            vTaskExitCritical();\r
+\r
+/* As this port allows interrupt nesting... */\r
+#define portSET_INTERRUPT_MASK_FROM_ISR() get_ipl(); set_ipl( configMAX_SYSCALL_INTERRUPT_PRIORITY )\r
+#define portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ) set_ipl( uxSavedInterruptStatus )\r
+\r
+/*-----------------------------------------------------------*/\r
+\r
+/* Task function macros as described on the FreeRTOS.org WEB site. */\r
+#define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
+#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
+\r
+#ifdef __cplusplus\r
+}\r
+#endif\r
+\r
+#endif /* PORTMACRO_H */\r
+\r