aboutsummaryrefslogtreecommitdiff
path: root/src/sys/core.c
blob: fc3d9e1683f559aee44d9f5dadb0761b4fa2b9e2 (plain)
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
#include <cpu/irq.h>
#include <drivers/uart.h>
#include <globals.h>
#include <graphics/drawer.h>
#include <graphics/lfb.h>
#include <lib/mem.h>
#include <lib/q.h>
#include <lib/strings.h>
#include <symbols.h>
#include <sys/core.h>
#include <sys/power.h>
#include <sys/schedule.h>
#include <sys/timer.h>
#include <util/mutex.h>
#include <util/status.h>
#include <util/time.h>

void testlocal(void);

// Initialize IRQs
void sysinit(void)
{
	// Clear System Globals
	exe_cnt_m.addr = &exe_cnt;
	exe_cnt_m.pid = NULL_PID;
	rpi_heap_top = &rpi_heap;
	stimeh = *(unsigned long*)SYS_TIMER_CHI;
	stimel = *(unsigned long*)SYS_TIMER_CLO;
	*(unsigned long*) SYS_TIMER_C0 = 60000000 + stimeh; // 60 second trigger
	///...

	// Route GPU interrupts to Core 0
	store32(0x00, GPU_INTERRUPTS_ROUTING);

	// Mask Overrun of UART0
	store32(1<<4, UART0_IMSC);
	// Enable UART GPU IRQ
	store32(1<<25, IRQ_ENABLE2);
	// Enable Timer
	// As an IRQ
	store32(1<<0, IRQ_BASIC_ENABLE);
	// Get the frequency
	cntfrq = read_cntfrq();
	// Clear cntv interrupt and set next 1 second timer
	write_cntv_tval(cntfrq);
	//// Route timer to core0 irq
	//routing_core0cntv_to_core0irq();
	// Route timer to core0 fiq
	routing_core0cntv_to_core0fiq();
	// Enable timer
	enablecntv();
	// Enable system timer
	store32(SYS_TIMER_SC_M0, IRQ_ENABLE1);

	// Graphics Initialize
	lfb_init();
	lfb_showpicture();

	// Start Scheduler
	init_scheduler();

	// Enable IRQ & FIQ
	enableirq();
	enablefiq();

	add_thread(testlocal, 0, 0);
	add_thread(testlocal, 0, 1);
	add_thread(testlocal, 0, 1);
	add_thread(testlocal, 0, 3);
	add_thread(testlocal, 0, 5);
	uart_scheduler();
}

void testlocal1(void)
{
	//unsigned long a = 5;
	//struct Thread* t = scheduler.rthread_ll->data;
	//uart_string("vRan Thread ");
	//uart_10(t->data.pid);
	//uart_string(" Pri. ");
	//uart_10(t->data.priority);
	//uart_string(" ...\n");
	//add_thread(testlocal, 0);
	//schedule();
	//a += t->data.pid;
	//uart_10(a);
	//uart_string(" Done!\n");
}

void testlocal(void)
{
	//struct Thread* t = scheduler.rthread_ll->data;
	//uart_string("Ran Thread ");
	//uart_10(t->data.pid);
	//uart_string(" Pri. ");
	//uart_10(t->data.priority);
	//uart_string(" ...\n");
	////delay(0x80000000);
	//if (t->data.pid == 5) {
	//	add_thread(testlocal1, 1);
	//	schedule();
	//}
	//if (t->data.pid == 3) {
	//	// Example
	//	/*
	//		while (uart_tx_full) {
	//			t->data.status = THREAD_WAITING;
	//			schedule();
	//		} // Will wait until uart_tx is not full
	//	*/
	//}
	//uart_string("Done! ");
	//uart_10(t->data.pid);
	//uart_char('\n');
}