1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00
freebsd/sys/amd64/include
John Baldwin 6f92bdd0c1 New APIC support code:
- The apic interrupt entry points have been rewritten so that each entry
  point can serve 32 different vectors.  When the entry is executed, it
  uses one of the 32-bit ISR registers to determine which vector in its
  assigned range was triggered.  Thus, the apic code can support 159
  different interrupt vectors with only 5 entry points.
- We now always to disable the local APIC to work around an errata in
  certain PPros and then re-enable it again if we decide to use the APICs
  to route interrupts.
- We no longer map IO APICs or local APICs using special page table
  entries.  Instead, we just use pmap_mapdev().  We also no longer
  export the virtual address of the local APIC as a global symbol to
  the rest of the system, but only in local_apic.c.  To aid this, the
  APIC ID of each CPU is exported as a per-CPU variable.
- Interrupt sources are provided for each intpin on each IO APIC.
  Currently, each source is given a unique interrupt vector meaning that
  PCI interrupts are not shared on most machines with an I/O APIC.
  That mapping for interrupt sources to interrupt vectors is up to the
  APIC enumerator driver however.
- We no longer probe to see if we need to use mixed mode to route IRQ 0,
  instead we always use mixed mode to route IRQ 0 for now.  This can be
  disabled via the 'NO_MIXED_MODE' kernel option.
- The npx(4) driver now always probes to see if a built-in FPU is present
  since this test can now be performed with the new APIC code.  However,
  an SMP kernel will panic if there is more than one CPU and a built-in
  FPU is not found.
- PCI interrupts are now properly routed when using APICs to route
  interrupts, so remove the hack to psuedo-route interrupts when the
  intpin register was read.
- The apic.h header was moved to apicreg.h and a new apicvar.h header
  that declares the APIs used by the new APIC code was added.
2003-11-03 21:53:38 +00:00
..
pc
_inttypes.h
_limits.h
_stdint.h
_types.h
acpica_machdep.h MFi386 by jhb: add acpi_SetDefaultIntrModel(); 2003-09-22 22:12:46 +00:00
apicreg.h New APIC support code: 2003-11-03 21:53:38 +00:00
apicvar.h New APIC support code: 2003-11-03 21:53:38 +00:00
asm.h
asmacros.h
atomic.h
bus_amd64.h Implement the bus_space_map() function to allocate resources and initialize 2003-09-23 08:22:34 +00:00
bus_dma.h - Introduce a new busdma flag BUS_DMA_ZERO to request for zero'ed 2003-07-27 13:52:10 +00:00
bus_memio.h
bus_pio.h
bus.h
clock.h MFi386: BURN_BRIDGES around timer0 functions 2003-09-30 06:38:11 +00:00
cpu.h Sync with i386 version. The quality initialization was missing and some 2003-09-23 00:18:45 +00:00
cpufunc.h
cputypes.h
critical.h Expand inline the relevant parts of src/COPYRIGHT for Matt Dillon's 2003-08-12 23:24:05 +00:00
db_machdep.h
elf.h Add sysentvec->sv_fixlimits() hook so that we can catch cases on 64 bit 2003-09-25 01:10:26 +00:00
endian.h MFi386 rev 1.37: constant-friendly bswap macros 2003-09-22 22:37:49 +00:00
exec.h
float.h
floatingpoint.h
fpu.h Go back to 64 bit precision for fadd/fsub/fsqrt etc. This is because on 2003-07-22 06:50:34 +00:00
frame.h Pull the tier-2 card one last time and break the get/setcontext and 2003-10-15 02:04:52 +00:00
ieeefp.h Fix a dumbass mistake. I had the 'set' and 'get' reversed in the 2003-08-02 00:26:30 +00:00
in_cksum.h
intr_machdep.h New device interrupt code. This defines an interrupt source abstraction 2003-11-03 21:25:52 +00:00
kse.h
legacyvar.h MFi386 pci_bus.c 1.102 legacyvar.h 1.4: rename nexus_pcib to legacy_pcib 2003-09-23 00:03:44 +00:00
limits.h
md_var.h Move basemem variable into global scope so that the MP startup code can 2003-09-22 23:33:29 +00:00
metadata.h
mptable.h Always export r_gdt and r_idt and give them extern declarations in 2003-10-30 21:42:17 +00:00
mutex.h
npx.h Go back to 64 bit precision for fadd/fsub/fsqrt etc. This is because on 2003-07-22 06:50:34 +00:00
param.h KSTACK_PAGES is a global option. 2003-07-31 01:27:18 +00:00
pcb_ext.h
pcb.h
pci_cfgreg.h MFi386: pci_cfgreg.h rev 1.10 by jhb/des/njl. Fix CONF1_ENABLE_MSK. 2003-09-22 22:21:21 +00:00
pcpu.h
pmap.h Move pmap_resident_count() from the MD pmap.h to the MI pmap.h. 2003-10-06 01:47:12 +00:00
proc.h
profile.h
psl.h
ptrace.h
reg.h
reloc.h
resource.h
runq.h
segments.h MFi386 by jhb: use symbolic constants for the IDT entries. 2003-09-22 22:09:02 +00:00
setjmp.h
sigframe.h
signal.h Pull the tier-2 card one last time and break the get/setcontext and 2003-10-15 02:04:52 +00:00
smp.h
specialreg.h MFi386 rev 1.25 by jhb: add new MSR's and some missing older ones and 2003-09-22 22:51:46 +00:00
stdarg.h Add __va_copy and make it always visible, in spite of the __ISO_C_VISIBLE 2003-10-24 02:50:39 +00:00
sysarch.h Use a more robust API altogether for the amd64_get_fsbase() etc functions. 2003-10-23 06:06:14 +00:00
trap.h
tss.h
ucontext.h Pull the tier-2 card one last time and break the get/setcontext and 2003-10-15 02:04:52 +00:00
varargs.h Standardize idempotentcy ifdefs. Consistently use _MACHINE_VARARGS_H_ 2003-09-01 03:01:45 +00:00
vmparam.h Re-raise the default datasize and stacksize now that the 32 bit exec 2003-09-25 01:11:17 +00:00