1 # $NetBSD: files.x86,v 1.61 2011/02/24 10:56:02 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 # VIA C7 Temperature sensor 20 defflag opt_via_c7temp.h VIA_C7TEMP: sysmon_envsys 21 22 # To be able to test for NetBSD/xen in shared files 23 defflag opt_xen.h DO_NOT_DEFINE 24 25 define cpubus { [apid = -1] } 26 define cpufeaturebus {} 27 define ioapicbus { [apid = -1] } 28 define ipmibus {} 29 30 # 31 # CPU features 32 # 33 device cpu: cpufeaturebus 34 attach cpu at cpubus 35 file arch/x86/x86/cpu.c cpu 36 37 device coretemp: sysmon_envsys 38 attach coretemp at cpufeaturebus 39 file arch/x86/x86/coretemp.c coretemp 40 41 device est 42 attach est at cpufeaturebus 43 file arch/x86/x86/est.c est 44 file arch/x86/x86/intel_busclock.c est 45 46 device padlock: opencrypto 47 attach padlock at cpufeaturebus 48 file arch/x86/x86/via_padlock.c padlock 49 50 device powernow 51 attach powernow at cpufeaturebus 52 file arch/x86/x86/powernow.c powernow 53 54 file arch/x86/x86/apic.c ioapic | lapic 55 file arch/x86/x86/bus_dma.c 56 file arch/x86/x86/bus_space.c 57 file arch/x86/x86/consinit.c 58 file arch/x86/x86/core_machdep.c coredump 59 file arch/x86/x86/cpu_topology.c 60 file arch/x86/x86/errata.c 61 file arch/x86/x86/genfb_machdep.c 62 file arch/x86/x86/identcpu.c 63 file arch/x86/x86/i8259.c 64 file arch/x86/x86/intr.c 65 file arch/x86/x86/nmi.c 66 file arch/x86/x86/idt.c 67 file arch/x86/x86/ipi.c 68 file arch/x86/x86/mtrr_i686.c mtrr 69 file arch/x86/x86/patch.c 70 file arch/x86/x86/platform.c 71 file arch/x86/x86/pmap.c 72 file arch/x86/x86/procfs_machdep.c procfs 73 file arch/x86/x86/sys_machdep.c 74 file arch/x86/x86/syscall.c 75 file arch/x86/x86/vm_machdep.c 76 file arch/x86/x86/x86_autoconf.c 77 file arch/x86/x86/x86_machdep.c 78 79 define lapic 80 file arch/x86/x86/lapic.c lapic needs-flag 81 82 device ioapic: lapic 83 attach ioapic at ioapicbus 84 file arch/x86/x86/ioapic.c ioapic needs-flag 85 86 # MP configuration using Intel SMP specification 1.4 87 file arch/x86/x86/mpbios.c mpbios 88 89 # MP configuration using either ACPI or Intel SMP specification 1.4 90 file arch/x86/x86/mp.c acpi | mpbios 91 92 # MP configuration using ACPI 93 file arch/x86/x86/mpacpi.c acpi 94 95 file arch/x86/x86/acpi_machdep.c acpi 96 97 file arch/x86/acpi/acpi_wakeup.c acpi 98 file arch/x86/acpi/acpi_cpu_md.c acpi & acpicpu 99 100 file arch/x86/isa/isa_machdep.c isa 101 102 # Intel On Demand Clock Modulation 103 file arch/x86/x86/iclockmod.c intel_ondemand_clockmod 104 105 # VIA C7 Temperature sensor 106 file arch/x86/x86/viac7temp.c via_c7temp 107 108 # IPMI device 109 device ipmi: sysmon_envsys, sysmon_wdog 110 attach ipmi at ipmibus 111 file arch/x86/x86/ipmi.c ipmi needs-flag 112 113 file arch/x86/x86/vga_post.c vga_post 114 115 file arch/x86/x86/tprof_pmi.c tprof_pmi 116 file arch/x86/x86/tprof_amdpmi.c tprof_amdpmi 117 118 file arch/x86/pci/pci_machdep.c pci 119 file arch/x86/pci/pci_intr_machdep.c pci 120 121 file arch/x86/pci/pciide_machdep.c pciide_common 122 123 file arch/x86/pci/pci_bus_fixup.c pci_bus_fixup 124 file arch/x86/pci/pci_addr_fixup.c pci_addr_fixup 125