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
|
#include <cpu.h>
#include <cpu/irq.h>
#include <globals.h>
#include <graphics/lfb.h>
#include <symbols.h>
#include <sys/core.h>
#include <sys/schedule.h>
#include <tests/test.h>
#include <util/mutex.h>
#include <util/status.h>
#include <util/time.h>
#define CPS 1000
void handle_data(unsigned char);
void c_irq_handler(void)
{
unsigned long source = load32(CORE0_IRQ_SOURCE);
// Check if GPU Interrupt
if (source & (1 << 8)) {
// Check if UART Interrupt
if(load32(IRQ_PENDING2) & (1 << 25)) {
// Check if UART Interrupt is Masked
if(load32(UART0_MIS) & (1<<4)) {
// Get the UART data
unsigned long data = load32(UART0_DR);
// Draw it on the screen
{
draw_chex32(0, 9, data, 0xAA00FF);
}
// Handle the recieved data
// Ctrl+G to output scheduler debug info
if (data == 0x7)
uart_scheduler();
// Ctrl+T to toggle timer
else if(data == 0x14) {
unsigned long timer_status;
asm volatile("mrc p15, 0, %0, c14, c3, 1" : "=r"(timer_status));
if(timer_status == 0) {
cntfrq = read_cntfrq();
write_cntv_tval(cntfrq/CPS);
enablecntv();
draw_cstring(0, 3, "TIMER", 0x00FF00);
} else {
disablecntv();
draw_cstring(0, 3, "TIMER", 0xFF0000);
}
}
// Add task to handle the data
else {
add_thread(handle_data, (void*)data, 1);
}
return;
}
}
// Check if System Time Compare 0 Triggered the Interrupt
if (*(volatile unsigned long*)SYS_TIMER_CS & SYS_TIMER_SC_M0) {
volatile unsigned long* timer_cs = (volatile unsigned long*)SYS_TIMER_CS;
volatile unsigned long* timer_chi = (volatile unsigned long*)SYS_TIMER_CHI;
volatile unsigned long* nexttime = (volatile unsigned long*)SYS_TIMER_C0;
add_thread_without_duplicate(test_entry, 0, 2);
*nexttime = *timer_chi + 8000000;
*timer_cs = SYS_TIMER_SC_M0;
}
}
// Check if CNTV triggered the interrupt
else if (source & (1 << 3)) {
return;
}
return;
}
static unsigned long counter = 0;
unsigned long c_fiq_handler(void)
{
unsigned long source = load32(CORE0_FIQ_SOURCE);
// Check if CNTV triggered the interrupt
if (source & (1 << 3)) {
// Reset the counter
write_cntv_tval(cntfrq/CPS);
counter++;
if (counter % 0x6000 == 0)
counter = 0;
if (counter % 0x40 == 0)
return 1;
return 0;
}
return 0;
}
void handle_data(unsigned char data)
{
// Newline Case
if (data == 0x0D) {
// Backspace Case
} else if (data == 0x08 || data == 0x7F) {
} else if (data == 0x61) {
add_thread(uart_scheduler, 0, 2);
} else if (data == 0x62) {
//add_thread(test_entry, 0, 2);
}
}
|