blob: 83f82d9101bdb3a04faa4a6beae72c073746bd92 (
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
|
/*
* sysctl.h
*
* Created on: 2014-4-26
* Author: Tuowen
*/
// Support 8 different syscalls
// Possible improvement
// CPUOFF all the time, wakeup after syscall invoked.
#ifndef SYSCTL_H_
#define SYSCTL_H_
// Sysctl priority bit
// Lowest first
#define SYS_BIT7 (0x80)
#define SYS_BIT6 (0x40)
#define SYS_BIT5 (0x20)
#define SYS_BIT4 (0x10)
#define SYS_BIT3 (0x08)
#define SYS_BIT2 (0x04)
#define SYS_BIT1 (0x02)
#define SYS_BIT0 (0x01)
// SYSCALL invocation routine
// Used this in IRQ, also wakes up the cpu
#define SYSCALL_IRQ(X) (syscall|=X,_BIC_SR_IRQ(CPUOFF))
// Use this in anywhere other than IRQ
// Continuous invocation ?
#define SYSCALL(X) (syscall|=X)
// Only one stop function
// For IRQ & Main
#define SYSSTOP(X) (syscall&=~X)
// Call handler type
// Does't have any input
// Preserve the state in other global variables
// Usage example -> rsbus_syscall()
typedef void (*syshdlr)();
// Register call handler
// Always replace old value
void sysctl_reghdlr(unsigned int bit,syshdlr rot);
// Remove old call handler
// Replace with something useless
void sysctl_rmhdlr(unsigned int bit);
// Insert it into mainloop
// enabling automatic procedure invocation
void sysroutine();
// Setting up the proc base
// Call before usage
void sysctl_init();
extern volatile unsigned char syscall;
#endif /* SYSCTL_H_ */
|