diff options
author | peter <peter@FreeBSD.org> | 2003-11-17 08:58:16 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-11-17 08:58:16 +0000 |
commit | 9dedda25aa3f6dd18f44e322691c1351377f1927 (patch) | |
tree | aabbe8bf492a150ee82a721cb9396dd2a5b08c50 /sys/amd64/ia32 | |
parent | 71a2f6d14698b35350148cb96e1da0939b08ccb2 (diff) | |
download | FreeBSD-src-9dedda25aa3f6dd18f44e322691c1351377f1927.zip FreeBSD-src-9dedda25aa3f6dd18f44e322691c1351377f1927.tar.gz |
Initial landing of SMP support for FreeBSD/amd64.
- This is heavily derived from John Baldwin's apic/pci cleanup on i386.
- I have completely rewritten or drastically cleaned up some other parts.
(in particular, bootstrap)
- This is still a WIP. It seems that there are some highly bogus bioses
on nVidia nForce3-150 boards. I can't stress how broken these boards
are. I have a workaround in mind, but right now the Asus SK8N is broken.
The Gigabyte K8NPro (nVidia based) is also mind-numbingly hosed.
- Most of my testing has been with SCHED_ULE. SCHED_4BSD works.
- the apic and acpi components are 'standard'.
- If you have an nVidia nForce3-150 board, you are stuck with 'device
atpic' in addition, because they somehow managed to forget to connect the
8254 timer to the apic, even though its in the same silicon! ARGH!
This directly violates the ACPI spec.
Diffstat (limited to 'sys/amd64/ia32')
-rw-r--r-- | sys/amd64/ia32/ia32_syscall.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/amd64/ia32/ia32_syscall.c b/sys/amd64/ia32/ia32_syscall.c index 991c85b..e32cfcd 100644 --- a/sys/amd64/ia32/ia32_syscall.c +++ b/sys/amd64/ia32/ia32_syscall.c @@ -76,11 +76,9 @@ __FBSDID("$FreeBSD$"); #include <vm/vm_extern.h> #include <machine/cpu.h> +#include <machine/intr_machdep.h> #include <machine/md_var.h> -#include <amd64/isa/icu.h> -#include <amd64/isa/intr_machdep.h> - #define IDTVEC(name) __CONCAT(X,name) extern inthand_t IDTVEC(int0x80_syscall), IDTVEC(rsvd); |