]> begriffs open source - cmsis-freertos/blob - Demo/RX600_RX64M_RSK_GCC_e2studio/src/IntQueueTimer.c
Initial commit
[cmsis-freertos] / Demo / RX600_RX64M_RSK_GCC_e2studio / src / IntQueueTimer.c
1 /*
2     FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.
3     All rights reserved
4
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
6
7     This file is part of the FreeRTOS distribution.
8
9     FreeRTOS is free software; you can redistribute it and/or modify it under
10     the terms of the GNU General Public License (version 2) as published by the
11     Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.
12
13     ***************************************************************************
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<
16     >>!   obliged to provide the source code for proprietary components     !<<
17     >>!   outside of the FreeRTOS kernel.                                   !<<
18     ***************************************************************************
19
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following
23     link: http://www.freertos.org/a00114.html
24
25     ***************************************************************************
26      *                                                                       *
27      *    FreeRTOS provides completely free yet professionally developed,    *
28      *    robust, strictly quality controlled, supported, and cross          *
29      *    platform software that is more than just the market leader, it     *
30      *    is the industry's de facto standard.                               *
31      *                                                                       *
32      *    Help yourself get started quickly while simultaneously helping     *
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *
34      *    tutorial book, reference manual, or both:                          *
35      *    http://www.FreeRTOS.org/Documentation                              *
36      *                                                                       *
37     ***************************************************************************
38
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading
40     the FAQ page "My application does not run, what could be wrong?".  Have you
41     defined configASSERT()?
42
43     http://www.FreeRTOS.org/support - In return for receiving this top quality
44     embedded software for free we request you assist our global community by
45     participating in the support forum.
46
47     http://www.FreeRTOS.org/training - Investing in training allows your team to
48     be as productive as possible as early as possible.  Now you can receive
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers
50     Ltd, and the world's leading authority on the world's leading RTOS.
51
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.
55
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.
58
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS
61     licenses offer ticketed support, indemnification and commercial middleware.
62
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety
64     engineered and independently SIL3 certified version for use in safety and
65     mission critical applications that require provable dependability.
66
67     1 tab == 4 spaces!
68 */
69
70 /*
71  * This file contains the non-portable and therefore RX64M specific parts of
72  * the IntQueue standard demo task - namely the configuration of the timers
73  * that generate the interrupts and the interrupt entry points.
74  */
75
76 /* Scheduler includes. */
77 #include "FreeRTOS.h"
78 #include "task.h"
79
80 /* Demo includes. */
81 #include "IntQueueTimer.h"
82 #include "IntQueue.h"
83
84 /* Hardware specifics. */
85 #include "iodefine.h"
86 #include "rskrx64mdef.h"
87
88 #define IPR_PERIB_INTB128       128
89 #define IPR_PERIB_INTB129       129
90 #define IER_PERIB_INTB128       0x10
91 #define IER_PERIB_INTB129       0x10
92 #define IEN_PERIB_INTB128       IEN0
93 #define IEN_PERIB_INTB129       IEN1
94 #define IR_PERIB_INTB128        128
95 #define IR_PERIB_INTB129        129
96
97 void vIntQTimerISR0( void ) __attribute__ ((interrupt));
98 void vIntQTimerISR1( void ) __attribute__ ((interrupt));
99
100 #define tmrTIMER_0_1_FREQUENCY  ( 2000UL )
101 #define tmrTIMER_2_3_FREQUENCY  ( 2001UL )
102
103 void vInitialiseTimerForIntQueueTest( void )
104 {
105         /* Ensure interrupts do not start until full configuration is complete. */
106         portENTER_CRITICAL();
107         {
108                 /* Give write access. */
109                 SYSTEM.PRCR.WORD = 0xa502;
110
111                 /* Cascade two 8bit timer channels to generate the interrupts. 
112                 8bit timer unit 1 (TMR0 and TMR1) and 8bit timer unit 2 (TMR2 and TMR3 are
113                 utilised for this test. */
114
115                 /* Enable the timers. */
116                 SYSTEM.MSTPCRA.BIT.MSTPA5 = 0;
117                 SYSTEM.MSTPCRA.BIT.MSTPA4 = 0;
118
119                 /* Enable compare match A interrupt request. */
120                 TMR0.TCR.BIT.CMIEA = 1;
121                 TMR2.TCR.BIT.CMIEA = 1;
122
123                 /* Clear the timer on compare match A. */
124                 TMR0.TCR.BIT.CCLR = 1;
125                 TMR2.TCR.BIT.CCLR = 1;
126
127                 /* Set the compare match value. */
128                 TMR01.TCORA = ( unsigned short ) ( ( ( configPERIPHERAL_CLOCK_HZ / tmrTIMER_0_1_FREQUENCY ) -1 ) / 8 );
129                 TMR23.TCORA = ( unsigned short ) ( ( ( configPERIPHERAL_CLOCK_HZ / tmrTIMER_0_1_FREQUENCY ) -1 ) / 8 );
130
131                 /* 16 bit operation ( count from timer 1,2 ). */
132                 TMR0.TCCR.BIT.CSS = 3;
133                 TMR2.TCCR.BIT.CSS = 3;
134         
135                 /* Use PCLK as the input. */
136                 TMR1.TCCR.BIT.CSS = 1;
137                 TMR3.TCCR.BIT.CSS = 1;
138         
139                 /* Divide PCLK by 8. */
140                 TMR1.TCCR.BIT.CKS = 2;
141                 TMR3.TCCR.BIT.CKS = 2;
142
143                 /* Enable TMR 0, 2 interrupts. */
144                 TMR0.TCR.BIT.CMIEA = 1;
145                 TMR2.TCR.BIT.CMIEA = 1;
146
147                 /* Map TMR0 CMIA0 interrupt to vector slot B number 128 and set
148                 priority above the kernel's priority, but below the max syscall
149                 priority. */
150             ICU.SLIBXR128.BYTE = 3; /* Three is TMR0 compare match A. */
151             IPR( PERIB, INTB128 ) = configMAX_SYSCALL_INTERRUPT_PRIORITY - 1;
152                 IEN( PERIB, INTB128 ) = 1;
153
154                 /* Ensure that the flag is set to 0, otherwise the interrupt will not be
155                 accepted. */
156                 IR( PERIB, INTB128 ) = 0;
157
158                 /* Do the same for TMR2, but to vector 129. */
159             ICU.SLIBXR129.BYTE = 9; /* Nine is TMR2 compare match A. */
160             IPR( PERIB, INTB129 ) = configMAX_SYSCALL_INTERRUPT_PRIORITY - 2;
161                 IEN( PERIB, INTB129 ) = 1;
162                 IR( PERIB, INTB129 ) = 0;
163         }
164         portEXIT_CRITICAL();
165 }
166 /*-----------------------------------------------------------*/
167
168 /* On vector 128. */
169 void vIntQTimerISR0( void )
170 {
171         /* Enable interrupts to allow interrupt nesting. */
172         __asm volatile( "setpsw i" );
173
174         portYIELD_FROM_ISR( xFirstTimerHandler() );
175 }
176 /*-----------------------------------------------------------*/
177
178 /* On vector 129. */
179 void vIntQTimerISR1( void )
180 {
181         /* Enable interrupts to allow interrupt nesting. */
182         __asm volatile( "setpsw i" );
183
184         portYIELD_FROM_ISR( xSecondTimerHandler() );
185 }
186
187
188
189