-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* phoenix-rtos-kernel 8f51cb7...39b0e4e (2): > hal/ia32: Add I/O APIC support > hal/ia32: Add basic ACPI support and improve paging. * plo 7c62042...68cb3fc (2): > hal/ia32: Add basic ACPI support > hal: MISRA
- Loading branch information
1 parent
de316d7
commit 999e5b7
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule phoenix-rtos-kernel
updated
28 files
+0 −5 | hal/armv7a/arch/cpu.h | |
+5 −0 | hal/armv7a/cpu.c | |
+0 −5 | hal/armv7m/arch/cpu.h | |
+5 −0 | hal/armv7m/cpu.c | |
+0 −5 | hal/armv8m/arch/cpu.h | |
+5 −0 | hal/armv8m/cpu.c | |
+1 −1 | hal/cpu.h | |
+1 −1 | hal/ia32/Makefile | |
+25 −97 | hal/ia32/_init.S | |
+5 −4 | hal/ia32/_interrupts.S | |
+87 −0 | hal/ia32/arch/cpu.h | |
+28 −2 | hal/ia32/arch/interrupts.h | |
+20 −5 | hal/ia32/arch/pmap.h | |
+37 −67 | hal/ia32/cpu.c | |
+2 −2 | hal/ia32/hal.c | |
+255 −0 | hal/ia32/init.c | |
+195 −0 | hal/ia32/init.h | |
+318 −60 | hal/ia32/interrupts.c | |
+137 −186 | hal/ia32/pmap.c | |
+3 −3 | hal/ia32/timer.c | |
+11 −2 | hal/ia32/tlb.c | |
+1 −1 | hal/ia32/tlb.h | |
+0 −5 | hal/riscv64/arch/cpu.h | |
+5 −0 | hal/riscv64/cpu.c | |
+0 −5 | hal/sparcv8leon3/arch/cpu.h | |
+5 −0 | hal/sparcv8leon3/cpu.c | |
+11 −0 | include/arch/syspage-ia32.h | |
+0 −4 | proc/threads.c |
Submodule plo
updated
5 files
+1 −1 | hal/ia32/Makefile | |
+180 −0 | hal/ia32/acpi.c | |
+21 −0 | hal/ia32/acpi.h | |
+17 −8 | hal/ia32/memory.c | |
+103 −58 | syspage.c |