annotate cos/kernel/klib.c @ 26:dcce92b1efbc

Added mm.c
author windel
date Tue, 27 Dec 2011 17:36:52 +0100
parents d8627924d40d
children 47b7df514243
rev   line source
24
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
1 #include "kernel.h"
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
2
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
3 void panic(char *msg)
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
4 {
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
5 printf("Kernel panic: ");
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
6 printf(msg);
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
7 magicBochsBreak();
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
8 halt();
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
9 }
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
10
26
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
11 void reboot()
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
12 {
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
13 while ( (inb(0x64) & 0x02) == 0x02)
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
14 {
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
15 ;
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
16 }
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
17 outb(0x64, 0xFE);
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
18 }
dcce92b1efbc Added mm.c
windel
parents: 24
diff changeset
19
24
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
20 // IO port helpers:
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
21 void outb(uint16_t port, uint8_t value)
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
22 {
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
23 asm volatile ("outb %1, %0" : : "dN" (port), "a" (value));
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
24 }
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
25
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
26 uint8_t inb(uint16_t port)
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
27 {
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
28 uint8_t ret;
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
29 asm volatile ("inb %1, %0" : "=a" (ret) : "dN" (port));
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
30 return ret;
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
31 }
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
32
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
33 uint16_t inw(uint16_t port)
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
34 {
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
35 uint16_t ret;
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
36 asm volatile ("inw %1, %0" : "=a" (ret) : "dN" (port));
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
37 return ret;
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
38 }
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
39
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
40 // string functions:
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
41 int strncmp(const char* s1, const char* s2, int size)
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
42 {
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
43 int i;
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
44 for (i=0; i<size; i++)
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
45 {
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
46 if (s1[i] != s2[i]) return 0;
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
47 }
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
48 return 1;
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
49 }
d8627924d40d Split up in more files and reboot command
windel
parents:
diff changeset
50