Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
summeros
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Byron Lathi
summeros
Commits
32f00ba1
Commit
32f00ba1
authored
3 years ago
by
Byron Lathi
Browse files
Options
Downloads
Patches
Plain Diff
enable paging
parent
2d58a561
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
kernel/kernel.c
+8
-1
8 additions, 1 deletion
kernel/kernel.c
kernel/paging.c
+45
-0
45 additions, 0 deletions
kernel/paging.c
kernel/paging.h
+80
-0
80 additions, 0 deletions
kernel/paging.h
with
133 additions
and
1 deletion
kernel/kernel.c
+
8
−
1
View file @
32f00ba1
...
...
@@ -9,6 +9,7 @@
#include
"Devices/Storage/atapio.h"
#include
"Devices/Storage/mbr.h"
#include
"Devices/Storage/ext2.h"
#include
"paging.h"
#include
"Syscalls/execute.h"
...
...
@@ -94,10 +95,16 @@ void entry(unsigned long magic, unsigned long addr) {
ltr
(
KERNEL_TSS
);
}
printf
(
"framebuffer addr %x %x
\n
"
,
mbi
->
framebuffer_info
.
framebuffer_addr_high
,
mbi
->
framebuffer_info
.
framebuffer_addr_low
);
printf
(
"framebuffer size %d
\n
"
,
mbi
->
framebuffer_info
.
framebuffer_pitch
*
mbi
->
framebuffer_info
.
framebuffer_height
);
init_idt_exception
();
init_paging
();
printf
(
"Does this work?
\n
"
);
i8259_init
();
interrupts_init
();
init_idt_exception
();
i8259_enable_irq
(
1
);
//i8259_enable_irq(12);
keyboard_init
();
...
...
This diff is collapsed.
Click to expand it.
kernel/paging.c
0 → 100644
+
45
−
0
View file @
32f00ba1
#include
"paging.h"
void
init_paging
()
{
//Initialize 4MB Page for Kernal Code
page_directory
[
1
].
present
=
1
;
page_directory
[
1
].
rw
=
1
;
page_directory
[
1
].
ps
=
1
;
//4mb page
page_directory
[
1
].
g
=
1
;
//dont flush kerneal code from virtual memory
PDIR_SET_ADDR
(
KERNAL_PD_ENTRY
,
KERNAL_ADDR
);
page_directory
[
0x3f4
].
present
=
1
;
page_directory
[
0x3f4
].
rw
=
1
;
page_directory
[
0x3f4
].
ps
=
1
;
page_directory
[
0x3f4
].
g
=
1
;
PDIR_SET_ADDR
(
0x3f4
,
0xFD000000
);
//IA-32 Intel Page 57
/* Page Size Extensions (bit 4 of CR4). Enables 4-MByte pages when set; restricts page
* to 4 KBytes when clear.
*/
asm
volatile
(
"
\n
\
movl %cr4, %eax
\n
\
orl $0x10, %eax
\n
\
movl %eax, %cr4"
);
/* Moves Physical address of the base of the page directory Into CR3*/
asm
volatile
(
"
\n
\
movl %0, %%eax
\n
\
movl %%eax, %%cr3"
:
:
"r"
(
page_directory
)
);
/*Enable PE and PG in CR0*/
asm
volatile
(
"
\n
\
movl %cr0, %eax
\n
\
orl $0x80000001, %eax
\n
\
movl %eax, %cr0"
);
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
kernel/paging.h
0 → 100644
+
80
−
0
View file @
32f00ba1
#ifndef PAGING_H
#define PAGING_H
#define VGA_PT_IDX 184
#define VGA_BASE_ADDR 0xB8000
#define VGA_PD 0
#define USR_VGA_PD 0x21
#define KERNAL_ADDR 0x400000
#define KERNAL_PD_ENTRY 1
#define PD_SIZE 1024
#define PT_SIZE 1024
#define PAGE_ALIGN_OFFSET 12
#define DIR_BIT_OFF 22
#define TABLE_BMASK 0x3FF
#include
"types.h"
/* Define helper structs here */
/* Page-Directory Entry (4-KByte Page) */
typedef
struct
pdir_entry_t
{
struct
{
uint32_t
present
:
1
;
//Present
uint32_t
rw
:
1
;
//Read/Write
uint32_t
us
:
1
;
//User/supervisor (U/S) flag
uint32_t
pwt
:
1
;
//Page-level write-through (PWT) flag
uint32_t
pcd
:
1
;
//Page-level cache disable (PCD)
uint32_t
a
:
1
;
//Accessed (A) flag
uint32_t
reserved
:
1
;
//Reserved and available
uint32_t
ps
:
1
;
//Page Select
uint32_t
g
:
1
;
//Page Table Attribute Index
uint32_t
avail
:
3
;
//Available for system programmer’s use 11:9
uint32_t
addr
:
20
;
//Page Base Address 31:12
}
__attribute__
((
packed
));
}
pdir_entry_t
;
/*Page-Table Entry (4-KByte Page)*/
typedef
struct
ptable_entry_t
{
struct
{
uint32_t
present
:
1
;
//Present
uint32_t
rw
:
1
;
//Read/Write
uint32_t
us
:
1
;
//User/supervisor (U/S) flag
uint32_t
pwt
:
1
;
//Page-level write-through (PWT) flag
uint32_t
pcd
:
1
;
//Page-level cache disable (PCD)
uint32_t
a
:
1
;
//Accessed (A) flag
uint32_t
dirty
:
1
;
//Dirty (D) flag
uint32_t
reserved
:
1
;
//Reserved and available
uint32_t
g
:
1
;
//Page Table Attribute Index
uint32_t
avail
:
3
;
//Available for system programmer’s use 11:9
uint32_t
addr
:
20
;
//Page Base Address 31:12
}
__attribute__
((
packed
));
}
ptable_entry_t
;
/* Arrays for page_directory & page_entry */
extern
pdir_entry_t
page_directory
[
PD_SIZE
];
extern
ptable_entry_t
page_table
[
PT_SIZE
];
/* Macro To Set Address in Page Table */
#define PTAB_SET_ADDR(n, address) \
page_table[n].addr = ((unsigned int) address) >> PAGE_ALIGN_OFFSET
/* Macro To Set Address in Page Directory */
#define PDIR_SET_ADDR(n, address) \
page_directory[n].addr = ((unsigned int) address) >> PAGE_ALIGN_OFFSET
/* Initialize Paging */
void
init_paging
(
void
);
int32_t
map_large
(
uint32_t
*
v_addr
,
uint32_t
*
p_addr
);
int32_t
map_vmem
(
uint8_t
**
start
);
int32_t
unmap_small
(
uint32_t
*
v_addr
);
int32_t
unmap_large
(
uint32_t
*
v_addr
);
#define FLUSH_TLB() asm volatile ("movl %%cr3, %%eax \n movl %%eax, %%cr3"::: "%eax")
#endif
/* PAGING_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment