1 # $NetBSD: files.x86,v 1.62 2011/02/24 13:58:39 jruoho Exp $ 2 3 # options for MP configuration through the MP spec 4 defflag opt_mpbios.h MPBIOS MPVERBOSE MPDEBUG MPBIOS_SCANPCI 5 6 # MTRR support 7 defflag MTRR 8 9 # Interrupt debug 10 defflag opt_intrdebug.h INTRDEBUG 11 12 # PCI fixup options 13 defflag opt_pcifixup.h PCI_ADDR_FIXUP PCI_BUS_FIXUP 14 PCI_INTR_FIXUP PCI_INTR_FIXUP_FORCE 15 16 # Pentium 4+ Thermal Monitor ODCM (aka On Demand Clock Modulation) 17 defflag opt_intel_odcm.h INTEL_ONDEMAND_CLOCKMOD 18 19 # To be able to test for NetBSD/xen in shared files 20 defflag opt_xen.h DO_NOT_DEFINE 21 22 define cpubus { [apid = -1] } 23 define cpufeaturebus {} 24 define ioapicbus { [apid = -1] } 25 define ipmibus {} 26 27 # 28 # CPU features 29 # 30 device cpu: cpufeaturebus 31 attach cpu at cpubus 32 file arch/x86/x86/cpu.c cpu 33 34 device coretemp: sysmon_envsys 35 attach coretemp at cpufeaturebus 36 file arch/x86/x86/coretemp.c coretemp 37 38 device est 39 attach est at cpufeaturebus 40 file arch/x86/x86/est.c est 41 file arch/x86/x86/intel_busclock.c est 42 43 device padlock: opencrypto 44 attach padlock at cpufeaturebus 45 file arch/x86/x86/via_padlock.c padlock 46 47 device powernow 48 attach powernow at cpufeaturebus 49 file arch/x86/x86/powernow.c powernow 50 51 device viac7temp: sysmon_envsys 52 attach viac7temp at cpufeaturebus 53 file arch/x86/x86/viac7temp.c viac7temp 54 55 file arch/x86/x86/apic.c ioapic | lapic 56 file arch/x86/x86/bus_dma.c 57 file arch/x86/x86/bus_space.c 58 file arch/x86/x86/consinit.c 59 file arch/x86/x86/core_machdep.c coredump 60 file arch/x86/x86/cpu_topology.c 61 file arch/x86/x86/errata.c 62 file arch/x86/x86/genfb_machdep.c 63 file arch/x86/x86/identcpu.c 64 file arch/x86/x86/i8259.c 65 file arch/x86/x86/intr.c 66 file arch/x86/x86/nmi.c 67 file arch/x86/x86/idt.c 68 file arch/x86/x86/ipi.c 69 file arch/x86/x86/mtrr_i686.c mtrr 70 file arch/x86/x86/patch.c 71 file arch/x86/x86/platform.c 72 file arch/x86/x86/pmap.c 73 file arch/x86/x86/procfs_machdep.c procfs 74 file arch/x86/x86/sys_machdep.c 75 file arch/x86/x86/syscall.c 76 file arch/x86/x86/vm_machdep.c 77 file arch/x86/x86/x86_autoconf.c 78 file arch/x86/x86/x86_machdep.c 79 80 define lapic 81 file arch/x86/x86/lapic.c lapic needs-flag 82 83 device ioapic: lapic 84 attach ioapic at ioapicbus 85 file arch/x86/x86/ioapic.c ioapic needs-flag 86 87 # MP configuration using Intel SMP specification 1.4 88 file arch/x86/x86/mpbios.c mpbios 89 90 # MP configuration using either ACPI or Intel SMP specification 1.4 91 file arch/x86/x86/mp.c acpi | mpbios 92 93 # MP configuration using ACPI 94 file arch/x86/x86/mpacpi.c acpi 95 96 file arch/x86/x86/acpi_machdep.c acpi 97 98 file arch/x86/acpi/acpi_wakeup.c acpi 99 file arch/x86/acpi/acpi_cpu_md.c acpi & acpicpu 100 101 file arch/x86/isa/isa_machdep.c isa 102 103 # Intel On Demand Clock Modulation 104 file arch/x86/x86/iclockmod.c intel_ondemand_clockmod 105 106 # IPMI device 107 device ipmi: sysmon_envsys, sysmon_wdog 108 attach ipmi at ipmibus 109 file arch/x86/x86/ipmi.c ipmi needs-flag 110 111 file arch/x86/x86/vga_post.c vga_post 112 113 file arch/x86/x86/tprof_pmi.c tprof_pmi 114 file arch/x86/x86/tprof_amdpmi.c tprof_amdpmi 115 116 file arch/x86/pci/pci_machdep.c pci 117 file arch/x86/pci/pci_intr_machdep.c pci 118 119 file arch/x86/pci/pciide_machdep.c pciide_common 120 121 file arch/x86/pci/pci_bus_fixup.c pci_bus_fixup 122 file arch/x86/pci/pci_addr_fixup.c pci_addr_fixup 123