]> git.sur5r.net Git - freertos/commitdiff
Work on the Full build configuration for the MicroBlaze. Still a work in progress...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sat, 11 Jun 2011 21:04:17 +0000 (21:04 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sat, 11 Jun 2011 21:04:17 +0000 (21:04 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1452 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/.cproject
Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/FreeRTOSConfig.h
Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/FreeRTOS_Source/portable/GCC/MicroBlaze/portasm.S [new file with mode: 0644]
Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/main-blinky.c
Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/main-full.c

index de261f961f5c52e762a4f9ed589920b14ab238b7..3587cf6cc2119978390d239bd9cc2aded0fdeeea 100644 (file)
@@ -44,7 +44,7 @@
                                                                        <listOptionValue builtIn="false" value="&quot;${workspace_loc:/${ProjName}/FreeRTOS_Source/include}&quot;"/>\r
                                                                        <listOptionValue builtIn="false" value="&quot;${workspace_loc:/${ProjName}/FreeRTOS_Source/portable/GCC/MicroBlaze}&quot;"/>\r
                                                                </option>\r
-                                                               <option id="xilinx.gnu.compiler.symbols.defined.522894226" name="Defined symbols (-D)" superClass="xilinx.gnu.compiler.symbols.defined" valueType="definedSymbols"/>\r
+                                                               <option id="xilinx.gnu.compiler.symbols.defined.522894226" name="Defined symbols (-D)" superClass="xilinx.gnu.compiler.symbols.defined"/>\r
                                                                <inputType id="xilinx.gnu.compiler.input.264309084" name="C source files" superClass="xilinx.gnu.compiler.input"/>\r
                                                        </tool>\r
                                                        <tool id="xilinx.gnu.mb.cxx.toolchain.compiler.debug.1757864406" name="MicroBlaze g++ compiler" superClass="xilinx.gnu.mb.cxx.toolchain.compiler.debug">\r
                                                        <builder buildPath="${workspace_loc:/RTOSDemoSource/Debug}" enableAutoBuild="true" id="xilinx.gnu.mb.toolchain.builder.debug.2034661333" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="GNU make" superClass="xilinx.gnu.mb.toolchain.builder.debug"/>\r
                                                        <tool id="xilinx.gnu.mb.c.toolchain.assembler.debug.1663720311" name="MicroBlaze gcc assembler" superClass="xilinx.gnu.mb.c.toolchain.assembler.debug">\r
                                                                <option id="xilinx.gnu.mb.assembler.usele.787661810" name="Produce little endian code (-mlittle-endian)" superClass="xilinx.gnu.mb.assembler.usele" value="true" valueType="boolean"/>\r
+                                                               <option id="xilinx.gnu.both.asm.option.include.paths.67817492" name="Include Paths (-I)" superClass="xilinx.gnu.both.asm.option.include.paths" valueType="includePath">\r
+                                                                       <listOptionValue builtIn="false" value="&quot;${workspace_loc:/${ProjName}}&quot;"/>\r
+                                                               </option>\r
                                                                <inputType id="xilinx.gnu.assembler.input.828396103" superClass="xilinx.gnu.assembler.input"/>\r
                                                        </tool>\r
                                                        <tool id="xilinx.gnu.mb.c.toolchain.compiler.debug.1610218702" name="MicroBlaze gcc compiler" superClass="xilinx.gnu.mb.c.toolchain.compiler.debug">\r
index 77d37d9bcfbaa3b419958f80c4fc736d2f6b0169..c862d94651bfda873cf4ed6e1964a9a0d271599e 100644 (file)
@@ -83,7 +83,7 @@
 #define configCPU_CLOCK_HZ                             ( XPAR_MICROBLAZE_CORE_CLOCK_FREQ_HZ ) /* Not actually used in this demo as the timer is set up in main and uses the peripheral clock, not the CPU clock. */\r
 #define configTICK_RATE_HZ                             ( ( portTickType ) 1000 )\r
 #define configMAX_PRIORITIES                   ( ( unsigned portBASE_TYPE ) 6 )\r
-#define configTOTAL_HEAP_SIZE                  ( ( size_t ) ( 40 * 1024 ) )\r
+#define configTOTAL_HEAP_SIZE                  ( ( size_t ) ( 60 * 1024 ) )\r
 #define configMAX_TASK_NAME_LEN                        ( 10 )\r
 #define configUSE_TRACE_FACILITY               0\r
 #define configUSE_16_BIT_TICKS                 1\r
@@ -119,8 +119,7 @@ to exclude the API function. */
 #define INCLUDE_vTaskDelayUntil                        1\r
 #define INCLUDE_vTaskDelay                             1\r
 \r
-extern void vAssertCalled( char *pcFile, long lLine );\r
-#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __FILE__, __LINE__ );\r
+#define configASSERT( x ) if( ( x ) == 0 ) { portDISABLE_INTERRUPTS(); for( ;; ); }\r
        \r
 #define configINTERRUPT_CONTROLLER_TO_USE XPAR_INTC_SINGLE_DEVICE_ID\r
 \r
diff --git a/Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/FreeRTOS_Source/portable/GCC/MicroBlaze/portasm.S b/Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/FreeRTOS_Source/portable/GCC/MicroBlaze/portasm.S
new file mode 100644 (file)
index 0000000..c1ad4fe
--- /dev/null
@@ -0,0 +1,263 @@
+/*\r
+    FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.\r
+\r
+\r
+       FreeRTOS supports many tools and architectures. V7.0.0 is sponsored by:\r
+       Atollic AB - Atollic provides professional embedded systems development\r
+       tools for C/C++ development, code analysis and test automation.\r
+       See http://www.atollic.com\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
+#include "FreeRTOSConfig.h"\r
+\r
+       .extern pxCurrentTCB\r
+       .extern XIntc_DeviceInterruptHandler\r
+       .extern vTaskSwitchContext\r
+       .extern uxCriticalNesting\r
+       .extern pulISRStack\r
+\r
+       .global _interrupt_handler\r
+       .global VPortYieldASM\r
+       .global vPortStartFirstTask\r
+\r
+\r
+.macro portSAVE_CONTEXT\r
+\r
+       /* Make room for the context on the stack. */\r
+       addik r1, r1, -132\r
+\r
+       /* Save r31 so it can then be used as a temporary. */\r
+       swi r31, r1, 4\r
+\r
+       /* Copy the msr into r31 - this is stacked later. */\r
+       mfs r31, rmsr\r
+\r
+       /* Stack general registers. */\r
+       swi r30, r1, 12\r
+       swi r29, r1, 16\r
+       swi r28, r1, 20\r
+       swi r27, r1, 24\r
+       swi r26, r1, 28\r
+       swi r25, r1, 32\r
+       swi r24, r1, 36\r
+       swi r23, r1, 40\r
+       swi r22, r1, 44\r
+       swi r21, r1, 48\r
+       swi r20, r1, 52\r
+       swi r19, r1, 56\r
+       swi r18, r1, 60\r
+       swi r17, r1, 64\r
+       swi r16, r1, 68\r
+       swi r15, r1, 72\r
+       swi r13, r1, 80\r
+       swi r12, r1, 84\r
+       swi r11, r1, 88\r
+       swi r10, r1, 92\r
+       swi r9, r1, 96\r
+       swi r8, r1, 100\r
+       swi r7, r1, 104\r
+       swi r6, r1, 108\r
+       swi r5, r1, 112\r
+       swi r4, r1, 116\r
+       swi r3, r1, 120\r
+       swi r2, r1, 124\r
+\r
+       /* Stack the critical section nesting value. */\r
+       lwi r3, r0, uxCriticalNesting\r
+       swi r3, r1, 128\r
+\r
+       /* Save the top of stack value to the TCB. */\r
+       lwi r3, r0, pxCurrentTCB\r
+       sw      r1, r0, r3\r
+       \r
+       .endm\r
+\r
+.macro portRESTORE_CONTEXT\r
+\r
+       /* Load the top of stack value from the TCB. */\r
+       lwi r3, r0, pxCurrentTCB\r
+       lw      r1, r0, r3      \r
+\r
+       /* Restore the general registers. */\r
+       lwi r31, r1, 4          \r
+       lwi r30, r1, 12         \r
+       lwi r29, r1, 16 \r
+       lwi r28, r1, 20 \r
+       lwi r27, r1, 24 \r
+       lwi r26, r1, 28 \r
+       lwi r25, r1, 32 \r
+       lwi r24, r1, 36 \r
+       lwi r23, r1, 40 \r
+       lwi r22, r1, 44 \r
+       lwi r21, r1, 48 \r
+       lwi r20, r1, 52 \r
+       lwi r19, r1, 56 \r
+       lwi r18, r1, 60 \r
+       lwi r17, r1, 64 \r
+       lwi r16, r1, 68 \r
+       lwi r15, r1, 72 \r
+       lwi r14, r1, 76 \r
+       lwi r13, r1, 80 \r
+       lwi r12, r1, 84 \r
+       lwi r11, r1, 88 \r
+       lwi r10, r1, 92 \r
+       lwi r9, r1, 96  \r
+       lwi r8, r1, 100 \r
+       lwi r7, r1, 104\r
+       lwi r6, r1, 108\r
+       lwi r5, r1, 112\r
+       lwi r4, r1, 116\r
+       lwi r2, r1, 124\r
+\r
+       /* Reload the rmsr from the stack. */\r
+       lwi r3, r1, 8\r
+       mts rmsr, r3\r
+\r
+       /* Load the critical nesting value. */\r
+       lwi r3, r1, 128\r
+       swi r3, r0, uxCriticalNesting\r
+\r
+       /* Test the critical nesting value.  If it is non zero then the task last\r
+       exited the running state using a yield.  If it is zero, then the task\r
+       last exited the running state through an interrupt. */\r
+       xori r3, r3, 0\r
+       bnei r3, exit_from_yield\r
+\r
+       /* r3 was being used as a temporary.  Now restore its true value from the\r
+       stack. */\r
+       lwi r3, r1, 120\r
+\r
+       /* Remove the stack frame. */\r
+       addik r1, r1, 132\r
+\r
+       /* Return using rtid so interrupts are re-enabled as this function is\r
+       exited. */\r
+       rtid r14, 0\r
+       or r0, r0, r0\r
+\r
+       .endm\r
+\r
+       .text\r
+       .align  2\r
+\r
+/* This function is used to exit portRESTORE_CONTEXT() if the task being\r
+returned to last left the Running state by calling taskYIELD() (rather than\r
+being preempted by an interrupt. */\r
+exit_from_yield:\r
+\r
+       /* r3 was being used as a temporary.  Now restore its true value from the\r
+       stack. */\r
+       lwi r3, r1, 120\r
+\r
+       /* Remove the stack frame. */\r
+       addik r1, r1, 132\r
+\r
+       /* Return to the task. */\r
+       rtsd r14, 0\r
+       or r0, r0, r0\r
+\r
+\r
+_interrupt_handler:\r
+\r
+       portSAVE_CONTEXT\r
+\r
+       /* Stack msr. */\r
+       swi r31, r1, 8\r
+\r
+       /* Stack the return address. */\r
+       swi r14, r1, 76\r
+\r
+       /* Switch to the ISR stack. */\r
+       lwi r1, r0, pulISRStack\r
+\r
+       /* The parameter to the interrupt handler. */\r
+       ori     r5, r0, configINTERRUPT_CONTROLLER_TO_USE\r
+\r
+       /* Execute any pending interrupts. */\r
+       bralid r15, XIntc_DeviceInterruptHandler\r
+       or r0, r0, r0\r
+\r
+       /* Restore the context of the next task scheduled to execute. */\r
+       portRESTORE_CONTEXT\r
+\r
+\r
+VPortYieldASM:\r
+\r
+       portSAVE_CONTEXT\r
+\r
+       /* Stack msr. */\r
+       swi r31, r1, 8\r
+\r
+       /* Modify the return address so a return is done to the instruction after\r
+       the call to VPortYieldASM. */\r
+       addi r14, r14, 8\r
+       swi r14, r1, 76\r
+\r
+       /* Switch to use the ISR stack. */\r
+       lwi r1, r0, pulISRStack\r
+\r
+       /* Select the next task to execute. */\r
+       bralid r15, vTaskSwitchContext\r
+       or r0, r0, r0\r
+\r
+       /* Restore the context of the next task scheduled to execute. */\r
+       portRESTORE_CONTEXT\r
+\r
+vPortStartFirstTask:\r
+\r
+       portRESTORE_CONTEXT\r
+       \r
+       \r
+\r
+\r
+\r
+\r
index d16a459626ccd803156071c4879e03d90f6762d5..234b730c2cbb36b1d202838dce2065b45c1fc4ab 100644 (file)
@@ -478,15 +478,3 @@ unsigned long ulCSR;
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-void vAssertCalled( char *pcFile, long lLine )\r
-{\r
-volatile unsigned long ul = 1;\r
-\r
-       taskDISABLE_INTERRUPTS();\r
-       while( ul == 1 )\r
-       {\r
-               /* Just for somewhere to put a breakpoint. */\r
-               portNOP();\r
-       }\r
-       taskENABLE_INTERRUPTS();\r
-}\r
index 97e1c48da2aa93366e00a93e7e10290b29e74b31..8a97747fc9c903d908b82dc9f05beb718b820654 100644 (file)
@@ -249,25 +249,24 @@ static XTmrCtr xTimer0Instance;
 static xTimerHandle xCheckTimer = NULL;\r
 \r
 /*-----------------------------------------------------------*/\r
-volatile int xyz = 1;\r
 \r
 int main( void )\r
 {\r
        /* Configure the interrupt controller, LED outputs and button inputs. */\r
        prvSetupHardware();\r
-       \r
+\r
        /* Start the reg test tasks which test the context switching mechanism. */\r
-//     xTaskCreate( vRegisterTest1, ( const signed char * const ) "RegTst1", configMINIMAL_STACK_SIZE, ( void * ) 0, tskIDLE_PRIORITY, NULL );\r
-//     xTaskCreate( vRegisterTest2, ( const signed char * const ) "RegTst2", configMINIMAL_STACK_SIZE, ( void * ) 0, tskIDLE_PRIORITY, NULL );\r
+       xTaskCreate( vRegisterTest1, ( const signed char * const ) "RegTst1", configMINIMAL_STACK_SIZE, ( void * ) 0, tskIDLE_PRIORITY, NULL );\r
+       xTaskCreate( vRegisterTest2, ( const signed char * const ) "RegTst2", configMINIMAL_STACK_SIZE, ( void * ) 0, tskIDLE_PRIORITY, NULL );\r
 \r
        /* The web server task. */\r
 //_RB_ xTaskCreate( vuIP_Task, "uIP", mainuIP_STACK_SIZE, NULL, mainuIP_TASK_PRIORITY, NULL );\r
 \r
        /* Create the standard demo tasks. */\r
-//     vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
-//     vCreateBlockTimeTasks();\r
-//     vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
-//     vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
+       vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
+       vCreateBlockTimeTasks();\r
+       vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
+       vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
        vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
        vStartLEDFlashTasks( mainFLASH_TASK_PRIORITY );\r
 //     vStartQueuePeekTasks();\r
@@ -284,13 +283,13 @@ int main( void )
        the reasons stated in the comments above the call to\r
        vStartTimerDemoTask(), that the check timer is not actually started\r
        until after the scheduler has been started. */\r
-       xCheckTimer = xTimerCreate( ( const signed char * ) "Check timer", mainNO_ERROR_CHECK_TIMER_PERIOD, pdTRUE, ( void * ) 0, vCheckTimerCallback );\r
+//     xCheckTimer = xTimerCreate( ( const signed char * ) "Check timer", mainNO_ERROR_CHECK_TIMER_PERIOD, pdTRUE, ( void * ) 0, vCheckTimerCallback );\r
 \r
        /* Ensure the check timer will start running as soon as the scheduler\r
        starts.  The block time is set to 0 (mainDONT_BLOCK), but would be\r
        ingnored at this point anyway as block times can only be specified when\r
        the scheduler is running. */\r
-       xTimerStart( xCheckTimer, mainDONT_BLOCK );\r
+//     xTimerStart( xCheckTimer, mainDONT_BLOCK );\r
 \r
        /* Start the tasks running. */\r
        vTaskStartScheduler();\r
@@ -537,6 +536,7 @@ const unsigned char ucSetToOutput = 0U;
 \r
        configASSERT( ( xStatus == pdPASS ) );\r
 #else\r
+       taskDISABLE_INTERRUPTS();\r
        vParTestInitialise();\r
 #endif //_RB_\r
 \r
@@ -546,16 +546,3 @@ const unsigned char ucSetToOutput = 0U;
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-void vAssertCalled( char *pcFile, long lLine )\r
-{\r
-volatile unsigned long ul = 1;\r
-\r
-       taskDISABLE_INTERRUPTS();\r
-       while( ul == 1 )\r
-       {\r
-               /* Just for somewhere to put a breakpoint. */\r
-               portNOP();\r
-       }\r
-       taskENABLE_INTERRUPTS();\r
-}\r
-\r