-
Notifications
You must be signed in to change notification settings - Fork 53
/
main_part106.c
203 lines (161 loc) · 6.54 KB
/
main_part106.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*Copyright (c) 2015, Adam Taylor
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project*/
#include <stdio.h>
#include "platform.h"
#include "xparameters.h"
#include "xtmrctr.h"
#include "xil_exception.h"
#include "xscugic.h"
#include "xgpiops.h"
#include "xil_cache.h"
#define TMRCTR_DEVICE_1 XPAR_TMRCTR_0_DEVICE_ID
#define TMRCTR_DEVICE_2 XPAR_AXI_TIMER_1_DEVICE_ID
#define TMRCTR_INTERRUPT_ID XPS_IRQ_INT_ID
#define TMRCTR_FINTERRUPT_ID XPS_FIQ_INT_ID
#define INTC_DEVICE_ID XPAR_PS7_SCUTIMER_0_DEVICE_ID
#define TIMER_CNTR_0 0
#define VALUE_ZERO 0xF0000000
#define VALUE_ONE 0xF8035280
#define FREEZE_ZERO 54
#define FREEZE_ONE 55
XScuGic InterruptController;
XTmrCtr Timer1CounterInst;
XTmrCtr Timer2CounterInst;
XGpioPs Gpio;
static void TmrCtrSetupIntrSystem(XScuGic* IntcInstancePtr,
XTmrCtr* InstancePtr,
XTmrCtr* InstancePtr2,
u16 IntrId,
u16 IntrId2,
u8 TmrCtrNumber);
void Timer1CounterHandler(void *CallBackRef, u8 TmrCtrNumber);
void Timer2CounterHandler(void *CallBackRef, u8 TmrCtrNumber);
int main()
{
XGpioPs_Config *GPIOConfigPtr;
init_platform();
// uncomment these to test with the caches disabled
// Xil_DCacheDisable();
// Xil_ICacheDisable();
GPIOConfigPtr = XGpioPs_LookupConfig(XPAR_XGPIOPS_0_DEVICE_ID);
XGpioPs_CfgInitialize(&Gpio, GPIOConfigPtr,GPIOConfigPtr->BaseAddr);
XGpioPs_SetDirectionPin(&Gpio, FREEZE_ZERO, 1);
XGpioPs_SetOutputEnablePin(&Gpio, FREEZE_ZERO, 1);
XGpioPs_SetDirectionPin(&Gpio, FREEZE_ONE, 1);
XGpioPs_SetOutputEnablePin(&Gpio, FREEZE_ONE, 1);
printf("Interrupt Latency Demonstration\n\r");
XTmrCtr_Initialize(&Timer1CounterInst, TMRCTR_DEVICE_1);
XTmrCtr_Initialize(&Timer2CounterInst, TMRCTR_DEVICE_2);
TmrCtrSetupIntrSystem(&InterruptController,&Timer1CounterInst,&Timer2CounterInst,
TMRCTR_INTERRUPT_ID,TMRCTR_FINTERRUPT_ID,TIMER_CNTR_0);
XTmrCtr_SetHandler(&Timer1CounterInst, Timer1CounterHandler,&Timer1CounterInst);
XTmrCtr_SetHandler(&Timer2CounterInst, Timer2CounterHandler,&Timer2CounterInst);
XTmrCtr_SetOptions(&Timer1CounterInst, TIMER_CNTR_0,XTC_INT_MODE_OPTION|XTC_AUTO_RELOAD_OPTION);
XTmrCtr_SetOptions(&Timer2CounterInst, TIMER_CNTR_0,XTC_INT_MODE_OPTION|XTC_AUTO_RELOAD_OPTION);
XTmrCtr_SetResetValue(&Timer1CounterInst, TIMER_CNTR_0, VALUE_ZERO);
XTmrCtr_SetResetValue(&Timer2CounterInst, TIMER_CNTR_0, VALUE_ONE);
XTmrCtr_Start(&Timer1CounterInst, TIMER_CNTR_0);
XTmrCtr_Start(&Timer2CounterInst, TIMER_CNTR_0);
while(1){}
}
//ISR which reads at the value from the timer
void Timer1CounterHandler(void *CallBackRef, u8 TmrCtrNumber)
{
u32 value;
u32 result;
float int_process;
value = XTmrCtr_GetValue(&Timer1CounterInst, TIMER_CNTR_0);
result = value - VALUE_ZERO;
int_process = (float)result * 10e-9;
printf("Interrupt nIRQ count %x difference %d time %0.9f\n\r",(unsigned int) value,(int) result, int_process);
}
//ISR which freezes the value of the timer
//void Timer1CounterHandler(void *CallBackRef, u8 TmrCtrNumber)
//{
//
// //int i;
// u32 value;
// u32 result;
// float int_process;
// XGpioPs_WritePin(&Gpio, FREEZE_ZERO, 1);
// value = XTmrCtr_GetValue(&Timer1CounterInst, TIMER_CNTR_0);
// result = value - VALUE_ZERO;
// int_process = (float)result * 10e-9;
// printf("Interrupt nIRQ count %x difference %d time %0.9f\n\r",(unsigned int) value,(int) result, int_process);
// XGpioPs_WritePin(&Gpio, FREEZE_ZERO, 0);
//
//}
//ISR which freezes the value of the timer
//void Timer2CounterHandler(void *CallBackRef, u8 TmrCtrNumber)
//{
//
// u32 value;
// u32 result;
// float int_process;
// XGpioPs_WritePin(&Gpio, FREEZE_ONE, 1);
// value = XTmrCtr_GetValue(&Timer2CounterInst, TIMER_CNTR_0);
// result = value - VALUE_ONE;
// int_process = (float)result * 10e-9;
// printf("Interrupt fIRQ count %x difference %d time %0.9f\n\r",(unsigned int) value,(int) result, int_process);
// XGpioPs_WritePin(&Gpio, FREEZE_ONE, 0);
//
//}
//ISR which reads at the value from the timer
void Timer2CounterHandler(void *CallBackRef, u8 TmrCtrNumber)
{
u32 value;
u32 result;
float int_process;
value = XTmrCtr_GetValue(&Timer2CounterInst, TIMER_CNTR_0);
result = value - VALUE_ONE;
int_process = (float)result * 10e-9;
printf("Interrupt fIRQ count %x difference %d time %0.9f\n\r",(unsigned int) value,(int) result, int_process);
}
// function which sets up the interrupts.
static void TmrCtrSetupIntrSystem(XScuGic* IntcInstancePtr,
XTmrCtr* InstancePtr,
XTmrCtr* InstancePtr2,
u16 IntrId,
u16 IntrId2,
u8 TmrCtrNumber)
{
XScuGic_Config *IntcConfig;
IntcConfig = XScuGic_LookupConfig(INTC_DEVICE_ID);
XScuGic_CfgInitialize(IntcInstancePtr, IntcConfig,
IntcConfig->CpuBaseAddress);
XScuGic_Connect(IntcInstancePtr, IntrId,
(Xil_ExceptionHandler)XTmrCtr_InterruptHandler,
InstancePtr);
XScuGic_Connect(IntcInstancePtr, IntrId2,
(Xil_ExceptionHandler)XTmrCtr_InterruptHandler,
InstancePtr2);
XScuGic_Enable(IntcInstancePtr, IntrId);
XScuGic_Enable(IntcInstancePtr, IntrId2);
Xil_ExceptionInit();
Xil_ExceptionRegisterHandler(XIL_EXCEPTION_ID_FIQ_INT,
(Xil_ExceptionHandler)
XScuGic_InterruptHandler,
IntcInstancePtr);
Xil_ExceptionEnableMask(XIL_EXCEPTION_ALL);
Xil_Out32(0xf8f00100,0xF);
}