]> Joshua Wise's Git repositories - netwatch.git/blame - aseg-paging/pagingstub.c
Working serial output in pagingland. Continues to run, too.
[netwatch.git] / aseg-paging / pagingstub.c
CommitLineData
9e2a82e4
JP
1#include <io.h>
2#include <smram.h>
3#include <video_defines.h>
4#include <minilib.h>
5#include <smi.h>
6#include <pci-bother.h>
e68cc768 7#include <serial.h>
9e2a82e4
JP
8#include "../net/net.h"
9#include "vga-overlay.h"
10
11#include "vm_flags.h"
12#include "pagetable.h"
13
14void set_cr0(unsigned int);
b908495a 15void ps_switch_stack (void (*call)(), int stack);
9e2a82e4
JP
16
17extern int entry_initialized;
18extern int _bss, _bssend, _end;
19void smi_entry();
20#define get_cr0() \
21 ({ \
22 register unsigned int _temp__; \
23 asm volatile("mov %%cr0, %0" : "=r" (_temp__)); \
24 _temp__; \
25 })
26
27
28#define set_cr3(value) \
29 { \
30 register unsigned int _temp__ = (value); \
31 asm volatile("mov %0, %%cr3" : : "r" (_temp__)); \
32 }
33#define CR0_PG 0x80000000
34
35#define MAP_FLAGS (PTE_PRESENT | PTE_READ_WRITE)
36
b908495a 37void * pt_setup(int smbase, int tseg_start, int tseg_size) {
9e2a82e4
JP
38 int i;
39 outb(0x80, 0x51);
40
41 /* The page directory and page table live at SMBASE and SMBASE + 0x1000,
42 * respectively; clear them. */
b908495a
JP
43 int * pagedirectory = (int *) tseg_start;
44 int * pagetable = (int *) (tseg_start + 0x1000);
9e2a82e4
JP
45
46 /* Clear out the page directory except for one entry pointing to the
47 * page table, and clear the page table entirely. */
48 outb(0x80, 0x52);
b908495a 49 pagedirectory[0] = (tseg_start + 0x1000) | PTE_PRESENT | PTE_READ_WRITE;
9e2a82e4
JP
50 outb(0x80, 0x53);
51 for (i = 1; i < 1024; i++)
52 {
53 pagedirectory[i] = 0;
54 }
55
56 outb(0x80, 0x54);
57 for (i = 0; i < 1024; i++)
58 {
59 pagetable[i] = 0;
60 }
61 outb(0x80, 0x55);
62
63 /* The page at 0x10000 - 0x10FFF points to the SMI entry point,
64 * SMBASE + 0x8000. */
65 pagetable[16] = (0x8000 + smbase) | MAP_FLAGS;
66
67 /* 0x11000 to 0x1EFFF map to the rest of ASEG up to SMBASE + 0xF000;
68 * the page containing the saved state is not mappped to our code
69 * region. */
70
71 for (i = 0; i < 8; i++)
72 {
73 pagetable[17 + i] = (i * 0x1000 + smbase) | MAP_FLAGS;
74 }
75
76 for (i = 0; i < 6; i++)
77 {
78 pagetable[25 + i] = (smbase + 0x9000 + i * 0x1000) | MAP_FLAGS;
79 }
80
81 outb(0x80, 0x56);
82 /* Map 0xA8000 to itself. */
83
84 for (i = 0; i < 32; i++) {
85 pagetable[0xA0 + i] = (0xA0000 + i * 0x1000) | MAP_FLAGS;
86 }
87
88 /* Map 0x200000 to TSEG */
89 for (i = 0; i < 128; i++) {
b908495a 90 pagetable[0x200 + i] = (tseg_start + 0x2000 + i * 0x1000) | MAP_FLAGS;
9e2a82e4
JP
91 }
92
93 /* Map 0x300000 -> 0x200000, so we can copy our code out of
94 * RAM the first time around */
95 for (i = 0; i < 256; i++) {
b908495a 96 pagetable[0x300 + i] = (0x200000 + i * 0x1000) | MAP_FLAGS;
9e2a82e4
JP
97 }
98
99 outb(0x80, 0x57);
100 return pagedirectory;
101}
102
103void c_entry(void)
104{
b908495a 105 unsigned char *bp;
9e2a82e4
JP
106
107 outb(0x80, 0x41);
113df320
JW
108 if (!entry_initialized)
109 pt_setup(0xA0000, 0x1FF80000, 0x80000);
110
111 /* Enable paging. */
112 outb(0x80, 0x42);
113 set_cr3(0x1FF80000);
9e2a82e4 114 set_cr0(get_cr0() | CR0_PG);
b908495a 115
113df320 116 outb(0x80, 0x43);
9e2a82e4 117 if (!entry_initialized) {
113df320
JW
118 extern void __firstrun_start();
119
120 /* If needed, copy in data. */
9e2a82e4
JP
121 for (bp = (void *)0x200000; (void *)bp < (void *)&_bss; bp++)
122 *bp = *(bp + 0x100000);
9e2a82e4
JP
123 for (bp = (void *)&_bss; (void *)bp < (void *)&_bssend; bp++)
124 *bp = 0;
113df320
JW
125 serial_init();
126 dolog("Paging enabled.");
127 __firstrun_start(); /* Now initialize BSS, etc. */
128
129 entry_initialized = 1;
9e2a82e4
JP
130 }
131
113df320
JW
132 outb(0x80, 0x44);
133 ps_switch_stack(smi_entry, 0x270000);
b908495a 134 outb(0x80, 0xFA);
9e2a82e4 135}
This page took 0.035786 seconds and 4 git commands to generate.